-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (60 loc) · 1.07 KB
/
style.css
File metadata and controls
70 lines (60 loc) · 1.07 KB
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--background-color: #1b0f21;
--text-color: #f0f3f9;
}
body,
#title,
#table-of-links,
li {
justify-content: center;
text-align: center;
}
li:nth-of-type(2) { display: none; }
body {
display: flex;
flex-direction: column;
background-color: var(--background-color);
font-family: sans-serif;
gap: 5vmin;
margin: 2vh 2vw;
a {
text-decoration: none;
}
#title {
font-size: 2vmax;
font-weight: 800;
color: var(--text-color);
}
nav {
ul {
display: flex;
flex-direction: column;
gap: 5vmin;
li {
list-style: none;
display: flex;
height: 3vmax;
a {
flex-grow: 1;
display: flex;
color: var(--text-color);
font-size: 1.5vmax;
font-weight: 600;
text-transform: capitalize;
gap: 3vmin;
margin: 0.5vmax 0;
img {
height: auto;
aspect-ratio: 1;
margin: 0.5vmax 0;
}
}
}
}
}
}