-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
57 lines (46 loc) · 864 Bytes
/
index.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
:root {
--text-nav-light: #F9F9F9;
--text-light: slategrey;
--text-dark: #2c3e50;
--highlight-light: #fd971f;
color: var(--text-dark);
background-color: var(--bg-dark);
font-family: 'Courier New', monospace;
}
body {
height: 100%;
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
color: var(--text-light);
}
a {
color: var(--text-light);
transition: color 0.2s;
text-decoration: none;
}
a:hover {
color: var(--text-dark);
}
strong {
color: var(--text-light);
}
#topbar {
padding: 0.5rem;
background-color: var(--highlight-light);
display: flex;
justify-content: flex-end;
}
#switch-lang {
color: var(--text-dark);
}
#main-container {
margin-left: 25%;
margin-right: 25%;
margin-bottom: 4rem;
margin-top: 1rem;
}
.home-headers {
margin-bottom: 0;
}