-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.css
48 lines (48 loc) · 813 Bytes
/
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
#header{
width: 1fr;
height: 250px;
background-color: aquamarine;
padding: 70px;
}
.TOPRIGHT{
text-decoration: blanchedalmond;
font-size: medium;
text-align: right;
margin-top: 20px;
margin-left: 1200px;
text-decoration: none;
padding-right: 10px;
}
span{
display: inline-block;
}
.SearchProduct{
text-align: center;
}
a{
font-size: larger;
}
input{
font-size: 1rem;
}
.products-list{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
gap: .5rem;
margin-top: 2rem;
}
.products{
border: 1px solid black;
background-color: antiquewhite;
padding: .5rem;
}
.products > .header{
margin-bottom: .25rem;
}
.products > .description{
font-size: .8rem;
color: grey;
}
.hide{
display: none;
}