blob: 3b1599639ec0a52e3589e9666e0c85ef36a17bf5 (
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
|
body {
font-family: "Lucida Console", "Courier New", monospace;
background-color: #fbf1c7;
color: #282828;
font-size: 18px;
}
.dark-mode {
background-color: #282828;
color: #fbf1c7;
}
h1 {
font-size: 38px;
color: #fe8019;
}
h2 {
font-size: 32px;
color: #b8bb26;
}
h3 {
font-size: 26;
color: #98971a;
}
p {
/* text-overflow: ellipsis; /\* will make [...] at the end *\/ */
/* width: 800px; /\* change to your preferences *\/ */
/* white-space: wrap; /\* paragraph to one line *\/ */
/* overflow:hidden; /\* older browsers *\/ */
}
a:link {
color: #fe8019;
background-color: transparent;
text-decoration: none;
font-size: 18px;
}
a:visited {
color: #d65d03;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #fabd2f;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
div {
padding-top: 10px;
padding-right: 35px;
padding-bottom: 10px;
padding-left: 35px;
}
|