-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (89 loc) · 1.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
font-family: Verdana, sans-serif;
margin: 0em
}
:root {
--theme: #4095E7;
--theme-alt: #263C66;
}
a {
color: var(--theme);
}
a:visited {
color: var(--theme-alt);
}
a:hover {
color: var(--theme);
}
.nav {
height: 80.8px;
box-sizing: border-box;
}
.nav .navbar {
display: flex;
height: 20.4px;
background: var(--theme);
margin-top: -3px;
vertical-align: middle;
font-weight: bold;
}
.nav .extrabar a {
font-size: x-small;
color: white;
display: block;
padding: 3px 8px;
text-decoration: none;
white-space: nowrap;
border-right: 0.01px solid white;
margin-left: -1px
}
.nav .navbar a {
font-size: x-small;
color: white;
display: block;
padding: 3px 8px;
text-decoration: none;
white-space: nowrap;
border-right: 0.01px solid white;
border-left: 0.01px solid white;
margin-left: -1px
}
.nav .navbar a:hover {
background: var(--theme-alt);
color: var(--theme);
}
.nav .extrabar {
float: right;
margin-top: 1px !important;
display: flex;
height: 20.4px;
background: black;
margin-top: -3px;
vertical-align: middle;
font-weight: bold;
}
.nav .extrabar a:hover {
background: white;
color: black;
}
.main {
font-size: small;
}
ul {
list-style-image: url("/bullet.png")
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: var(--theme);
color: white;
text-align: center;
font-size: small;
height: 20.4px;
}
#logo{
background: var(--theme);
background: linear-gradient(90deg, var(--theme) 0%, rgba(0,240,255,0) 70%);
}