-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
338 lines (281 loc) · 9.34 KB
/
index2.html
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<!doctype html>
<head>
<meta charset="utf-8">
<script>updateTitle = false;</script>
</head>
<body class="index">
<div id="container">
<div id="headerArea">
<div id="header" style="height: 101px;"></div>
<nav id="navbar" style="margin-bottom: 10px;">
<ul>
<li><a href="/pages/home.html">home</a></li>
<li><a href="/pages/links.html">links</a></li>
<li><a href="/pages/blog.html">blog</a></li>
<li><a href="/pages/art.html">art</a></li>
<li><a href="/pages/resources.html">resources</a></li>
<li><a href="/pages/shrines.html">shrines</a></li>
<li> <a href="/pages/games.html">games</a></li>
</ul>
</nav>
</div>
<div id="flex">
<aside id="leftSidebar" style="margin-right: 5px;">
<h2>Updates</h2>
<div class="box">
<p>okies</p>
<ul style="padding-left:10px;">
<li>heheeee</li>
<li>meowing</li>
</ul>
</div>
<h2>idk yet</h2>
</aside>
<main>
<h1>Work in progress</h1>
<p><strong>Cassie's sanctuary</strong></p>
<p>meowing over here barking over there</p>
<p>waaaaaaaaaw</p>
<p>hehe</p>
<p> 1 </p>
<p>aaaaaaaaaaaaaaaaaaa</p>
<p>aaaaaaaaaa</p>
</main>
<aside id="rightSidebar" style="margin-left: 5px;">
<h2>Updates</h2>
<div class="box">
<p>i'll place some entries here, maybe</p>
<ul style="padding-left:10px;">
<li>none yet (>.<)</li>
<li>none yet (>.<)</li>
<li>none yet (>.<)</li>
</ul>
</div>
<h2>Hi there!</h2>
</aside>
</div>
<footer id="footer" style="margin-top: 10px;">PK 2000-2024</footer>
</div>
<!-- THIS IS THE CSS !-->
<style>
/* user styles */
/* styles are what change the color and sizes of stuff on your site. */
/* these are variables that are being used in the code
these tended to confuse some people, so I only kept
the images as variables */
:root {
--header-image: url('/images/misc/her.png');
--body-bg-image: url('images/backgrounds/stars.gif');
/* colors */
--content: #a7a7a7;
}
/* if you have the URL of a font, you can set it below */
/* feel free to delete this if it's not your vibe */
/* this seems like a lot for just one font and I would have to agree
but I wanted to include an example of how to include a custom font.
If you download a font file you can upload it onto your Neocities
and then link it! Many fonts have separate files for each style
(bold, italic, etc. T_T) which is why there are so many!
*/
@font-face {
font-family: monospace;
src: url('/resources/fonts/FreeSans.ttf');
}
@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
font-weight: bold;
}
@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
font-style: italic;
}
@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
font-style: italic;
font-weight: bold;
}
body {
font-family: 'Nunito', sans-serif;
margin: 0;
background-color: #08031A;
/* you can delete the line below if you'd prefer to not use an image */
background-size: 65px;
color: #fceaff;
background-image: var(--body-bg-image);
}
* {
box-sizing: border-box;
}
/* below this line is CSS for the layout */
/* this is a CSS comment
to uncomment a line of CSS, remove the * and the /
before and after the text */
/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
the other elements, you will need to move that div outside
of the container */
#container {
max-width: 900px;
/* this is the width of your layout! */
/* if you change the above value, scroll to the bottom
and change the media query according to the comment! */
margin: 0 auto;
/* this centers the entire page */
}
/* the area below is for all links on your page
EXCEPT for the navigation */
#container a {
color: #858585;
font-weight: bold;
/* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
}
#header {
width: 100%;
background-color: #464646;
/* header color here! */
height: 150px;
/* this is only for a background image! */
/* if you want to put images IN the header,
you can add them directly to the <div id="header"></div> element! */
background-image: var(--header-image);
background-size: 100%;
}
/* navigation section!! */
#navbar {
height: 40px;
background-color: #13092D;
/* navbar color */
width: 100%;
}
#navbar ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
justify-content: space-evenly;
}
#navbar li {
padding-top: 10px;
}
/* navigation links*/
#navbar li a {
color: #999999;
/* navbar text color */
font-weight: 800;
text-decoration: none;
/* this removes the underline */
}
/* navigation link when a link is hovered over */
#navbar li a:hover {
color: #afafaf;
text-decoration: underline;
}
#flex {
display: flex;
}
/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
background-color: #241445;
width: 200px;
padding: 20px;
font-size: smaller;
/* this makes the sidebar text slightly smaller */
}
/* this is the color of the main content area,
between the sidebars! */
main {
background-color: #434244;
flex: 1;
padding: 20px;
order: 2;
}
/* what's this "order" stuff about??
allow me to explain!
if you're using both sidebars, the "order" value
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */
*/ #leftSidebar {
order: 1;
}
#rightSidebar {
order: 3;
}
footer {
background-color: #13092D;
/* background color for footer */
width: 100%;
height: 40px;
padding: 10px;
text-align: center;
/* this centers the footer text */
}
h1,
h2,
h3 {
color: #ffffff;
}
h1 {
font-size: 25px;
}
strong {
/* this styles bold text */
color: #ffffff;
}
/* this is just a cool box, it's the darker colored one */
.box {
background-color: #13092D;
border: 1px solid #53c4b5;
padding: 10px;
}
/* CSS for extras */
#topBar {
width: 100%;
height: 30px;
padding: 10px;
font-size: smaller;
background-color: #13092D;
}
/* BELOW THIS POINT IS MEDIA QUERY */
/* so you wanna change the width of your page?
by default, the container width is 900px.
in order to keep things responsive, take your new height,
and then subtrack it by 100. use this new number as the
"max-width" value below
*/
@media only screen and (max-width: 800px) {
#flex {
flex-wrap: wrap;
}
aside {
width: 100%;
}
/* the order of the items is adjusted here for responsiveness!
since the sidebars would be too small on a mobile device.
feel free to play around with the order!
*/
main {
order: 1;
}
#leftSidebar {
order: 2;
}
#rightSidebar {
order: 3;
}
#navbar ul {
flex-wrap: wrap;
}
}
</style>
<div></div>
<!--iframe src="/pages/home.html" width="565" height="530" frameborder="0" scrolling="yes" name="frame" id="mainframe"></iframe>
</div>
-->
</body>