blob: 21694d03ab9b0261851f29c13c01864b6bcbdc4f (
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
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
  | 
body {
    background-color: black;
}
.shittyweb-header {
    text-align: center;
}
.title {
    display: none;
}
#content {
    width: 65%;
    margin: auto;
    color: #00ff00;
    background-color: #060a0f;
    border: 1px solid gray;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
a:link {
    color: red;
}
a:visited {
    color: pink;
}
b {
    color: white;
}
table {
    margin: auto;
}
.outline-2 {
    border: 1px dotted gray;
}
#buttons {
    display: none;
}
#navigation {
    display: none;
}
#text-navigation ul {
    list-style-type: none;
    margin: auto;
    text-align: center;
    padding: 5px;
    border: 1px solid #00ff00;
}
#text-navigation li {
    display: inline;
    padding: 3px;
}
#outline-container-buttons {
    text-align: center;
}
#postamble {
    width: 25%;
    color: #00ff00;
    background-color: #060a0f;
    text-align: center;
    margin: auto;
}
  |