blob: a56cbdc99b1f9b0a2d38dfa1bc1cf8f7fffc964d (
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
|
html {
font-family:
"LM Mono","Courier New",Courier,monospace;
}
body, html {
margin: auto;
width:86%;
height:86%;
}
h1 {
font-size: 40pt;
font-weight: bold;
text-shadow: 1px 1px 5px #690000;
color:#690000;
margin-left: 10px;
display: inline;
}
h2 {
margin: 0px;
margin-left: 10px;
padding: 0px;
color: #0b0b0b;
font-weight: bold;
text-shadow: 0px 0px 3px #ababab;
}
a {
text-decoration: none;
color: blue;
}
img {
border-width: 10px;
box-shadow: 0 0 5px black;
border-radius: 10px;
}
ul {
list-style-type: none;
margin: 0px;
padding-left: 10px;
}
p {
margin: 10px;
}
div {
display: inline-block;
}
/* This enables the hexcode to flow. */
pre {
margin-left: 10px;
position: relative;
}
/* This is the navigation bar at the top*/
#bar ul,
#bar li {
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
font-size: 20px;
}
.container {
padding: 10px;
margin: 10px;
color: rgba(50, 50, 50, 1);
background: rgba(170, 170, 170, 0.3);
border-width: 2px;
border-color: #ababab;
border-radius: 10px;
width: 100%;
border-style: solid;
}
.terms {
font-size: 5pt;
color:black
}
.avatar {
margin: 10px;
display: inline-block;
}
.content-wrapper {
width: 100%;
margin-top: 5px;
height: 225px;
overflow-y: auto;
font-size: 19px;
}
.c {
margin-right: -15px;
margin-top: 5px;
height: 225px;
overflow: hidden;
cursor: default
}
|