blob: 0b3b4106db5b8a06237415fd70b3af20efcd9384 (
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
|
body {
background-color: #1d2021;
color: #fbf1c7;
}
h1 {
font-family: "Lucida Console", "Courier New", monospace;
color: #b8bb26;
}
h2 {
font-family: "Lucida Console", "Courier New", monospace;
color: #b8bb26;
}
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 *\/ */
font-family: "Lucida Console", "Courier New", monospace;
}
table, th, td {
border: 2px solid;
border-collapse: collapse;
}
a:link {
color: #fe8019;
background-color: transparent;
text-decoration: none;
}
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;
}
center {
margin: auto;
width: 50%;
border: 5px solid #a89984;
padding: 10px;
}
|