-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (62 loc) · 1 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: white;
font-family: sans-serif;
}
body {
background: black;
}
.container-buttons {
margin-bottom: 30px;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
padding: 20px;
}
ul {
list-style: none;
display: flex;
justify-content: center;
align-items: center;
display: grid;
grid-template-columns: 200px 200px 200px;
}
li {
padding: 5px;
border: 2px solid #8133ff;
border-radius: 5px;
width: fit-content;
margin: 20px;
width: 150px;
}
img {
width: 100%;
height: 120px;
border-radius: 5px;
}
p {
font-size: 16px;
}
.price {
color: #53be21;
font-weight: bold;
}
button {
border-radius: 5px;
border: none;
background-color: #79cb15;
color: rgb(53, 53, 53);
font-weight: bold;
padding: 10px;
cursor: pointer;
width: 110px;
}
button:hover {
opacity: 0.9;
}
button:active {
opacity: 0.7;
}