-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
255 lines (216 loc) · 6.28 KB
/
about.html
File metadata and controls
255 lines (216 loc) · 6.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!--title-->
<title>TRANSGENDER.DOG</title>
<!--favicon-->
<link rel="icon" href="https://neopets.lgbt/images/other/favicon.png">
<!-- The Fredoka front is loaded locally. To load Fredoka from Google, remove this comment.
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap" rel="stylesheet"> -->
<!--zooms page on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=0.8" />≈
</head>
<style>
* {
margin: 0;
}
body {
/* background and generic font settings */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: rgb(34, 34, 34);
height: 100%;
background-image: url(/images/index/bg.jpg);
}
@font-face {
font-family: 'Fredoka';
src: url('/fonts/Fredoka-Variable.ttf') format('truetype');
font-weight: 300 700;
font-stretch: 75% 125%;
font-style: normal;
}
.main {
/* all boxes go in here, and rely on this */
position: relative;
top: -50%;
margin: 20px auto;
margin-left: auto;
margin-right: auto;
max-width: 500px;
background: rgb(211, 237, 234);
color: rgb(108, 78, 57);
word-wrap: break-word;
padding: 10px;
text-align: center;
font-weight: bold;
border: 2px solid rgb(108, 78, 57);
}
/* allows box2 and box3 to touch */
.main-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
/* style to keep jolteon and tables next to it in place */
.gif-toppy {
display: flex;
align-items: center;
justify-content: flex-start;
padding-bottom: 5px;
border-bottom: 1px solid rgb(108, 78, 57);
}
.box1 {
/* pike/fen feral art */
position: relative;
top: -50%;
margin: 0px auto;
width: 100%;
max-width: 600px;
background: rgb(211, 237, 234);
color: rgb(0, 0, 0);
word-wrap: break-word;
font-weight: bold;
border-bottom: 1px solid rgb(108, 78, 57);
}
.box1x {
/* pike/fen feral art */
position: relative;
top: -50%;
margin: 0px auto;
width: 100%;
max-width: 600px;
background: rgb(211, 237, 234);
color: rgb(108, 78, 57);
word-wrap: break-word;
font-family: Fredoka;
font-weight: 2;
border-bottom: 1px solid rgb(108, 78, 57);
}
.box4 {
/* links */
position: relative;
top: -50%;
margin: 0px auto;
width: 100%;
max-width: 600px;
background: rgb(211, 237, 234);
color: rgb(108, 78, 57);
word-wrap: break-word;
font-weight: bold;
border-top: 1px solid rgb(108, 78, 57);
padding-top: 10px;
}
/* table stuff below */
.float-left {
/*working on... table */
margin-right: auto;
}
.float-right {
/* convention table */
margin-left: auto;
}
.float-center {
/* centers the links tables with a bigger font */
margin-left: auto;
margin-right: auto;
font-size: 12px;
}
table {
/* table style for gif-toppy */
border-collapse: collapse;
border: 1px solid rgb(108, 78, 57);
font-size: 10px;
}
td {
/* draws lines for tables */
padding: 2px 4px;
border-left: 1px solid rgb(108, 78, 57);
border-right: 1px solid rgb(108, 78, 57);
white-space: nowrap;
}
tr:first-child td {
/* draws lines for tables */
border-top: 1px solid rgb(108, 78, 57);
}
tr:last-child td {
/* draws lines for tables */
border-bottom: 1px solid rgb(108, 78, 57);
}
td.ex {
/* makes the link tables bigger */
padding: 2px 40px;
border-left: 1px solid rgb(108, 78, 57);
border-right: 1px solid rgb(108, 78, 57);
}
/* additional customization */
a:link,
a:visited {
color: rgb(145, 86, 9);
text-decoration: underline;
}
.bolda {
font-weight: bold;
font-style: italic;
font-size: 22px;
color: rgb(173, 137, 104);
}
/* keeps pics within main */
img {
max-width: 100%;
max-height: 100%;
}
.cropper {
height: 200px;
overflow: hidden;
}
.cropper img {
width: 100%;
height: auto;
object-fit: cover;
object-position: center center;
/*centers crop vertically */
display: block;
}
</style>
<!-- content starts here -->
<body>
<div class="main">
<div class="gif-toppy">
<table class="float-left">
<tr>
<td>Working on...</td>
<td>Tenko Suits >:3</td>
</tr>
</table>
<a href="/"> <img src="/images/index/gif/shinyjolteon.gif"></a>
<table class="float-right">
<tr>
<td>CFF/NYFB/Magfest</td>
</tr>
</table>
</div>
<div class="box1">
<div class="cropper"><img src="/images/index/image02.png"></div>
</div>
<div class="box1x">
<p>
Slowly writing this out and also linking my shit taste in music so we all have to suffer together. :)
</p>
<img src="images/about/image67.png" height="50%" width="50%">
</div>
<div class="box4">
<table class="float-center">
<tr>
<td class="ex"><a href="/about">About</a></td>
<td class="ex"><a href="/fursuits">Fursuits</a></td>
<td class="ex"><a href="https://telegram.me/brownhyena">Contact</a></td>
</tr>
</table>
</div>
</div>