-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (50 loc) · 817 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
49
50
51
52
53
54
55
56
57
58
header {
display: flex;
align-items: center;
justify-content: space-between;
background-color: purple;
color: white;
height: 80px;
padding: 0 32px;
position: sticky;
top: 0;
z-index: 1;
}
main {
padding: 32px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
ul {
list-style: none;
display: flex;
gap: 10px;
}
ul li a {
color: white;
}
.card-cat {
border-radius: 10px;
color: white;
padding-bottom: 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
background-color: orange;
width: 300px;
height: 320px;
text-decoration: none;
}
.card-cat:hover {
opacity: 0.89;
}
.card-cat img {
height: 220px;
width: 300px;
margin-bottom: 10px;
}