-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
257 lines (219 loc) · 4.32 KB
/
default.css
File metadata and controls
257 lines (219 loc) · 4.32 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/*
Changelog:
3/13/23
removed unused stuff, cleaned up, added comments
3/14/23
footer now goes to bottom, added tiled background
7/15/25
dusted this off, made it less gaudy and more pleasant to look at and read
the footer ACTUALLY goes to the bottom now, smh
7/16/25
whole lotta changes
basically the whole website looks different now
cleaned up redundant things, ordered as it is in the html
*/
/*main background*/
body {
background-image: url(img/bg/bg.png);
color: white;
text-shadow: #000 1px 1px;
font-family: "Verdana", "Arial", "Helvetica", sans-serif;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center right;
}
/*background tint*/
.bgoverlay {
background-color: #041a04cb;
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
}
/*header/footer (and related) element styles*/
header {
text-align: center;
font-size: 150%;
padding-top: 10px;
padding-bottom: 10px;
}
/*header icon style*/
.headericon {
width: 60px;
position: relative;
}
/*navbar and main content container*/
.thepage {
margin: 0 auto;
width: auto;
max-width: 1300px;
}
/*Fancy text box*/
.main-content {
display: block;
background-color: #051C04e0;
margin-left: 230px;
margin-right: 0;
margin-top: 0;
padding: 25px;
border-top: 3px green solid;
border-bottom: 3px green solid;
line-height: 1.5em;
width: auto;
}
/*for embedding images in main-content*/
.scroll-container {
background-color: #204120;
overflow: auto;
white-space: nowrap;
padding: 5px;
margin-bottom: 10px;
}
/*for embedding images in main-content*/
.scroll-container-nobg {
overflow: auto;
white-space: nowrap;
padding: 5px;
margin-bottom: 10px;
}
/*side navigation*/
.sidenav {
float: left;
width: 218px;
background: #051C04e0;
border-top: 3px solid green;
border-bottom: 3px solid green;
padding-bottom: 8px;
}
/*sidenav dividers*/
.sidenav div {
background: green;
text-align: center;
margin: 2px;
line-height: 18px;
color: white;
font-size: 16px;
font-weight: bold;
}
/*sidenav links*/
.sidenav a {
display: block;
margin: 0;
padding: 1px 5px;
font-weight: bolder;
text-decoration: none;
line-height: 1em;
color: lightblue;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: white;
}
/*navbar icon style*/
.sidenavicon {
vertical-align: text-bottom;
image-rendering: pixelated;
width: 32px; /*2x width of the icons (16px)*/
}
/*ACTUALLY drops footer to bottom of screen now*/
footer {
clear: both;
}
/*used in divs to center stuff*/
.center {
text-align: center;
}
/*Tooltips*/
/*
To use:
<div class="tooltip">Text you want tooltip on
<span class="tooltiptext">Tooltip text</span>
</div>
use span instead of div on the outside for non-breaking text.
*/
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.select-hover:hover {
outline: green solid 4px;
cursor: help;
}
/*link colors*/
a:link {
color: lightblue;
}
a:visited {
color: lightgray;
}
a:hover {
color: #4b50ee;
}
a:active {
color: white;
}
.link-title {
font-size: 1.5em;
padding-left: 5px;
font-weight: bolder;
}
/*horizontal rule*/
hr {
color: #2f612f;
background-color: green;
height: 3px;
width: 100%;
}
/*tables*/
table, th, td {
border: 1px solid green;
border-collapse: collapse;
}
th, td {
background-color: #204120;
padding: 5px;
}
ul, li {
padding-bottom: 1em;
}
/*discord style code blocks*/
code, pre {
background-color: #0D0E1B;
padding: 5px;
border: 1px solid #3A3A46;
border-radius: 5px;
font-size: 1.1em;
}
/*class for centering tables*/
.centertable {
margin-left: auto;
margin-right: auto;
}
/*fancy style for block quotes*/
blockquote {
background-color: #222526;
margin: 10px auto;
padding: 15px;
border-radius: 5px;
}
/* END OF FILE */