-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (125 loc) · 2.12 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body
{
background: #EEC939;
}
h5
{
display: inline;
color: white;
}
main
{
width: 80%;
height: 32em;
margin: auto;
background: #E46452;
border: 5px solid white;
border-radius: 10px;
margin-top: 3em;
text-align: center;
}
h1
{
font-family: 'Otomanopee One', sans-serif;
color: white;
display: inline-block;
text-align: center;
}
.Nike
{
width: 200px;
height: 200px;
background: yellow;
}
.container {
overflow: hidden;
display: inline;
}
.filterDiv {
padding-top: 2em;
background: white;
display: inline;
width: 300px;
height: 280px;
text-align: center;
margin: 2px;
display: none; /* Hidden by default */
border: 1px solid white;
border-radius: 10px;
box-shadow: 0px 1px 5px 0px black;
}
.filterDiv>img
{
width: 120px;
height: 100px;
border: 2px solid transparent;
border-radius: 25px;
display: block;
margin: auto;
}
h3
{
display: block;
font-family: 'Poppins', sans-serif;
background: #E46452;
color: white;
border: 5px solid white;
}
h2
{
font-family: 'Otomanopee One', sans-serif;
font-size: 16px;
}
.carts
{
display: inline;
position: relative;
left: 40%;
top: 20px;
}
.cart>h5
{
display: inline;
}
.cart{
cursor: grab;
width: 100px;
height: 50px;
border: 1px solid transparent;
border-radius: 20px;
background: #E46452;
color: white;
font-weight: bolder;
}
.cart:hover{
cursor: grab;
width: 100px;
height: 50px;
border: 1px solid transparent;
border-radius: 20px;
background: #E46452;
color: white;
font-weight: bolder;
color: black;
}
/* The "show" class is added to the filtered elements */
.show {
display: inline-block;
}
/* Style the buttons */
.btn {
border: none;
outline: none;
padding: 12px 16px;
background-color: #f1f1f1;
cursor: pointer;
}
/* Add a light grey background on mouse-over */
.btn:hover {
background-color: #ddd;
}
/* Add a dark background to the active button */
.btn.active {
background-color: #666;
color: white;
}