-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (58 loc) · 1.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--text: #18191a;
--bg: #F8FAFC;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Ubuntu", "Canterell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: var(--text);
background-color: var(--bg);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin: 1rem 0;
}
svg {
stroke: var(--text);
}
header {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
span {
font-weight: 500;
}
main {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 60vh;
}
#content {
font-size: 3em;
word-break: break-all;
text-align: center;
}
.nav_section {
display: flex;
justify-content: center;
}
ul {
display: flex;
list-style: none;
justify-content: center;
gap: 1rem;
}
li.active {
border-bottom: 3px solid var(--text);
}