blob: 1704bfcb04b4d6ed9c8f45d5c4416f4ffc8bb3b7 (
plain) (
blame)
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
  | 
body {
    background-color: black;
}
#content {
    margin: auto;
    color: #00ff00;
    background-color: #060a0f;
    border: 1px solid gray;
}
a:link {
    color: red;
}
a:visited {
    color: pink;
}
b {
    color: white;
}
.outline-2 {
    border: 1px dotted gray;
}
#buttons {
    display: none;
}
#outline-container-buttons {
    text-align: center;
}
#postamble {
    text-align: center;
}
  |