-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (119 loc) · 2.42 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
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,500&display=swap');
body{
background-color: #f1f1f1;
font-family: 'Nunito Sans', sans-serif;
padding: 10px;
}
.TitleDiv{
text-align: center;
display: flex;
justify-content: center;
font-weight: 600;
font-size: large;
color: #2c2c2c;
}
.TitleDiv h1::after{
height: 3px;
content: '';
background-color: #ca9d17;
width: 100px;
display: flex;
align-items: center;
margin: 0 auto;
}
.Categories{
margin-bottom: 15px;
}
.Categories ul{
margin: 0;
display: flex;
justify-content: center;
padding: 0;
}
.Categories ul li{
list-style: none;
display: block;
}
.Categories ul li button {
align-items: center;
appearance: none;
background-color: #fff;
border: 1px solid #ca9d17;
border-radius: .375em;
box-shadow: none;
box-sizing: border-box;
color: #ca9d17;
cursor: pointer;
display: inline-flex;
font-family: BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 1rem;
height: 2.5em;
justify-content: center;
line-height: 1.5;
padding: calc(.5em - 1px) 1em;
position: relative;
text-align: center;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: top;
white-space: nowrap;
}
.Categories ul li button:active {
border-color: #4a4a4a;
outline: 0;
}
.Categories ul li button:focus {
border-color: #485fc7;
outline: 0;
}
.Categories ul li button:hover {
border-color: #b5b5b5;
}
.Categories ul li button:focus:not(:active) {
box-shadow: rgba(72, 95, 199, .25) 0 0 0 .125em;
}
.items{
display: grid;
grid-template: 100px 100px/ auto auto;
column-gap: 20px;
row-gap: 50px;
}
.item{
grid-area: 100px;
}
.itemTitle{
display: flex;
justify-content: space-between;
align-items: start;
width: 100%;
border-bottom: 2px solid #ca9d17;
}
/* .itemTitle:after{
height: 3px;
content: '';
background-color: #ca9d17;
width: 100px;
display: flex;
align-items: center;
margin: 0 auto;
} */
.item{
display: flex;
}
.itemHeader{
width: 100%;
padding: 0px 10px;
}
.itemTitle h4{
margin: 0;
}
.imgproduct{
height: 100px;
width: 200px;
border-radius: 0.25rem;
border: 1px solid #ca9d17;
}
.price{
color: #ca9d17;
}