blob: ae46acaffeedf7b8dc5fad032e9bb222c1d482ed (
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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
:root {
--color0: #282828;
--color1: #cc241d;
--color2: #98971a;
--color3: #d79921;
--color4: #458588;
--color5: #b16286;
--color6: #689d6a;
--color7: #a89984;
--color8: #928374;
--color9: #fb4934;
--color10: #b8bb26;
--color11: #fabd2f;
--color12: #83a598;
--color13: #d3869b;
--color14: #8ec07c;
--color15: #ebdbb2;
--color256: #1d2021;
--color257: #ebdbb2;
--altbg:#292934;
--link: #97bef9;
--linkalt: #5982c1;
}
body {
max-width: 1050px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
background: var(--color256);
color: var(--color15);
padding: 1em;
}
.flex-container {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: flex-start;
align-content: center;
}
/* The two panels on the main page: */
.mainpanel {
flex: 1 1 700px;
}
.sidepanel {
background-color: var(--altbg);
padding:15px;
border-radius: 0 10px 30px 0;
flex: 1 1 auto;
}
.mainpanel ul li {
/* line-height:24px; */
font-size: 18px;
}
.mainpanel ul li ul li {
line-height:22px;
font-size: 16px;
}
.sidepanel a {
color: #85631b;
}
.sidepanel a:hover {
color: #d89e23;
}
.sidepanel ul li {
font-size:20px;
margin:0 0 15px 0;
}
.sidepanel ul li ul li {
font-size:18px;
margin: 0px;
list-style: none;
}
/* Class name of video thumbnails in videos.html */
.image {
width: 175px !important;
table-layout: fixed;
margin-left: auto;
margin-right: auto;
display: inline-table;
padding: 0px;
}
img.profile {
float: right;
margin: 10px;
height: auto;
width: 120px;
}
li img{
height: 1em;
}
h1 img{
height: 1em;
}
h2 img{
height: 1em;
}
h3 img{
height: 1em;
}
a:hover img {
background: #fe8019;
}
h1 {
color: var(--color8);
font-weight: bold;
text-shadow: -1px 3px 3px rgba(0, 0, 0, 0.90);
margin-bottom: 1em
}
h2 {
color: var(--color3);
font-weight: normal;
}
p {
line-height:20px;
font-size: 16px;
}
strong {
color: var(--color8)
}
em {
font-weight: normal;
color: var(--color8)
}
a {
color: var(--link);
text-decoration: none;
}
a:hover {
color: var(--linkalt);
}
|