-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (39 loc) · 688 Bytes
/
style.css
File metadata and controls
45 lines (39 loc) · 688 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
color: #cbcbcb;
}
body{
background-color: #222;
}
h1{
text-align: center;
margin: 30px 0;
}
ul{
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 0 40px;
}
ul li{
list-style: none;
flex: calc(25% - 20px);
max-width: calc(25% - 15px);
}
ul li a{
padding: 40px 20px;
background-color: rgba(255,255,255,0.03);
text-decoration: none;
width: 100%;
display: inline-block;
text-align: center;
border-radius: 10px;
transition: all 0.3s;
font-size: 18px;
}
ul li a:hover{
background-color: rgba(255,255,255,0.08);
}