-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfav.css
More file actions
109 lines (104 loc) · 1.88 KB
/
fav.css
File metadata and controls
109 lines (104 loc) · 1.88 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
*{
margin: 0%;
padding: 0%;
}
#nav{
display: flex;
justify-content: space-around;
padding: 2%;
}
#search{
height: 30px;
width: 300px;
border-radius: 20px;
border: 0ch;
background-color: rgb(237, 230, 221);
margin-left: 20px;
margin-right: 100px;
margin-top: auto;
margin-bottom: auto;
}
#nav>div{
width:100px
}
#nav>div>img{
width: 100%;
border-radius: 40px;
}
#fav{
height: 30px;
width: 100px;
border-radius: 20px;
border: 0ch;
background-color: rgb(178, 83, 151);
margin-left: 20px;
margin-right: 100px;
margin-top: auto;
margin-bottom: auto;
}
#cart{
height: 30px;
width: 100px;
border-radius: 20px;
border: 0ch;
background-color: rgb(61, 23, 50);
margin-left: 20px;
margin-right: 100px;
margin-top: auto;
margin-bottom: auto;
color: white;
}
#signin{
height: 30px;
width: 100px;
border-radius: 20px;
border: 0ch;
background-color: rgb(16, 39, 152);
margin-left: 20px;
margin-right: 100px;
margin-top: auto;
margin-bottom: auto;
}
#signin>a{
color: white;
}
#benav{
height: 40px;
background-color: black;
display: flex;
justify-content: space-evenly;
color: white;
align-items: center;
margin-top: auto;
margin-bottom: auto;
}
#container{
width: 900px;
margin: auto;
gap: 10px;
}
#container>div{
display: grid;
grid-template-columns: repeat(6,1fr);
grid-template-rows: auto;
gap: 10px;
margin: auto;
padding: 2%;
}
#container>div>img{
width:100%;
}
#container>div{
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
border-radius: 10px;
padding: 2%;
}
button{
background-color: red;
color: white;
border: 0ch;
margin: auto;
width: 200px;
height: 40px;
border-radius: 20px;
}