-
Notifications
You must be signed in to change notification settings - Fork 0
/
private.html
129 lines (101 loc) · 1.93 KB
/
private.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>${title}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="${description}">
<meta name="author" content="${author}">
<!-- <link rel="icon" type="image/png" href="images/favicon.png"> -->
<!-- FONT -->
<link href="http://fonts.googleapis.com/css?family=Roboto:100,400,700&subset=cyrillic-ext,greek-ext,latin-ext" rel="stylesheet">
<!-- <link rel="stylesheet" href="css/robotolight.css" type="text/css" /> -->
<!-- CSS -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<style>
#top {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 3em;
background-color: #444;
color: #fff;
display: flex;
align-items: center;
}
header {
width:90%; max-width: 960px; /* page width */
margin: 0 auto 0 auto;
color: #fff;
font-family: 'robotothin', 'Helvetica Neue Light', Helvetica, Arial, sans-serif;
font-size: 1em;
}
header b {
color: #fff;
font-size: 1.618em;
}
main {
width:90%; max-width: 960px; /* page width */
margin: 4em auto 4em auto;
/*margin-top: 2em;
margin-bottom: 30px;*/
/*background-color: #ccc;*/
}
#bottom {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 4em;
font-size: 0.8em;
display: flex;
align-items: center;
background-color: #444;
color: #bbb;
}
footer {
width:90%; max-width: 960px; /* page width */
margin: 0 auto 0 auto;
}
footer a {
color: inherit;
}
img {
max-width: 100%;
}
.pull-left {
float: left;
width: 25%;
margin-right: 1em;
}
.pull-right {
float: right;
width: 40%;
margin-left: 1em;
}
</style>
</head>
<body>
<div id="top">
<header>
<b>Alice Lab</b> for computational worldmaking
</header>
</div>
<main>
<section>
${toc}
${body}
</section>
<!--
<aside>
</aside>
-->
</main>
<div id="bottom">
<footer>
© 2021 Graham Wakefield, grrrwaaa at yorku dot ca
</footer>
</div>
</body>