-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (81 loc) · 1.6 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
background: url(./bg.png.jpg) fixed;
background-size:cover ;
}
.container{
background: #fff;
width: 370px;
height: 520px;
border-radius: 15px;
box-shadow: 5px 5px 30px rgb(0, 0, 0,0.6);
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
overflow-y: scroll;
}
/*مش فاهم ال over flowy*/
.container::-webkit-scrollbar{
display: none;
}
/*ابحث عنها يا نجم*/
.container .search-box{
width: 100%;
border: 1px solid gray;
border-radius: 5px;
display: flex;
flex-direction: row;
align-items: center;
}
.container .search-box input{
border: none;
outline: none;
box-shadow: none;
width: 100%;
font-size: 18px;
padding: 10px;
}
/*مش فاهم ال شادو */
.container .search-box i{
margin-left: 10px;
cursor: pointer;
}
.product-list{
padding: 20px 0;
}
.product{
display: flex;
align-items: center;
padding: 15px;
}
.product img{
width: 60px;
height: 60px;
border-radius: 5px;
object-fit: contain;
}
/*مش فاهم ال object */
.product-list .prodect-details h2{
font-size: 20px;
}
.product-list .prodect-details h3{
font-size: 18px;
}
.product-list{
visibility: hidden;
/* visibility: visible;
visibility: hidden; */
}
@media (min-width: 576px) {
.container {
width: 60%;
height: 60vh;
}
}