some basic data

This commit is contained in:
Tove 2025-05-17 09:43:54 +02:00
parent 2393df9045
commit b33176de1c
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
5 changed files with 62 additions and 0 deletions

5
404.html Normal file
View file

@ -0,0 +1,5 @@
<<header>>
<h1> Not found </h1>
The page you requested could not be found. Sorry :(

15
header.html Normal file
View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<head>
<title>polyphasic.info: %%pagename%%</title>
<meta name="viewport" content="height=device-height width=device-width">
<meta name="og:author" content="Polyphasic sleep">
<meta name="og:title" content="polyphasic.info: %%pagename%%">
<link rel="stylesheet" href="/style.css">
</head>
<div class=topstick>
<a href="/" style="font-size: 2em; text-decoration: none;">polyphasic.info</a>
</div>
<div class=content>

3
index.html Normal file
View file

@ -0,0 +1,3 @@
<<header>>

3
schedule/E3e.html Normal file
View file

@ -0,0 +1,3 @@
<<header>>
<h1> Everyman 3 Extended </h1>

36
style.css Normal file
View file

@ -0,0 +1,36 @@
html {
background-color: #111;
padding: 0;
font-family: sans;
}
body {
color: #dba;
padding: 0;
margin: 0;
}
a {
color: #fff;
}
div {
display: block;
}
div.topstick {
position: sticky;
top: 0;
left: 0;
width: calc(100vw - min(40px, 5vw) * 2);
margin: 0;
padding: min(40px, 5vw);
background-color: #222;
}
div.content {
margin: auto;
padding-top: 20px;
padding-bottom: 20vh;
width: min(95vw, 900px);
}