blob: 0c12a8279dec6569b2809c1af49c03ba001a7cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
body{
background-color: #43464b;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* NavBar */
.navbar{
margin: 1.2rem;
margin-top: 0;
border-bottom: 2px solid white;
}
.navbar span{
font-weight: bold !important;
color: white !important;
}
.navbar a:hover{
color: snow;
font-weight: bolder;
}
.navbar a{ color: white; }
|