-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
56 lines (48 loc) · 1.04 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
/* fonts #1d1e22 */
@font-face {font-family: Penumbra; src: url('Penumbra-HalfSerif.ttf');}
@font-face {font-family: Open Sans; src: url('OpenSans-Regular.ttf');}
h1, h2, h3 {
font-family: Penumbra;
}
body {
font-family: Open Sans;
margin-left: 20px;
}
.column {
float: left;
width: 50%;
height: 100%
}
#column2 {
padding-top: 50px;
padding-bottom: 20px;
}
.leaderIcon {
vertical-align: middle;
padding-right: 6px;
padding-left: 4px;
height: 25px;
}
:root {
--backgroundColor: #EEE;
--boxBackgroundColor: #FFF;
--highlightBackgroundColor: #E8E8E8;
--textColor: #000;
--linkColor: #00AA00;
--boxShadowColor: rgba(0,0,0, .15);
--transitionDuration: 400ms;
--spacing: 8px;
}
.dark-mode {
--backgroundColor: #1d1e22;
--boxBackgroundColor: #222;
--highlightBackgroundColor: #444;
--textColor: #FFF;
--linkColor: #00CC00;
--boxShadowColor: rgba(255,255,255, .1);
}
body {
background-color: var(--backgroundColor);
color: var(--textColor);
transition: color var(--transitionDuration), background-color var(--transitionDuration);
}