Compare commits
No commits in common. "a28e2365f9aa26be555150a1b12af6d714f510b8" and "cfaca7af9002ff9fab693c46beb29bb3ff8a7ce7" have entirely different histories.
a28e2365f9
...
cfaca7af90
|
@ -1,2 +0,0 @@
|
|||
*.ttf
|
||||
fonts/pixel_operator/LICENSE.txt
|
|
@ -1,5 +0,0 @@
|
|||
# Reduces ttf files to a subset of their original size to reduce the bandwidth
|
||||
# usage.
|
||||
|
||||
pyftsubset PixelOperator-Bold.ttf --output-file=PixelOperator-Bold_reduced.ttf --text-file=header_text.txt
|
||||
pyftsubset PixelOperator.ttf --output-file=PixelOperator_reduced.ttf --unicodes="U+0020-007E"
|
|
@ -1,3 +0,0 @@
|
|||
Welcome to My Small Corner of ~town
|
||||
My Things
|
||||
Other People's Things
|
39
index.html
39
index.html
|
@ -5,14 +5,8 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: "PixelOperator_reduced";
|
||||
src: url("./fonts/pixel_operator/PixelOperator_reduced.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "PixelOperator_reduced";
|
||||
font-weight: bold;
|
||||
src: url("./fonts/pixel_operator/PixelOperator-Bold_reduced.ttf");
|
||||
font-family: "PixelOperator";
|
||||
src: url("./fonts/PixelOperator-Bold.ttf");
|
||||
}
|
||||
|
||||
html {
|
||||
|
@ -24,7 +18,7 @@
|
|||
background: repeating-linear-gradient(rgb(0,0,170), rgb(0,0,170) 20px, rgb(0,170,170) 20px, rgb(0,170,170) 40px);
|
||||
min-height: 100%;
|
||||
margin: 0;
|
||||
font-family: PixelOperator_reduced, monospace, fixed;
|
||||
font-family: PixelOperator, monospace, fixed;
|
||||
font-size: 14pt;
|
||||
}
|
||||
|
||||
|
@ -57,18 +51,7 @@
|
|||
main {
|
||||
max-width: 80ch;
|
||||
margin: 0 0.5em;
|
||||
flex-grow: 2;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
footer > p#license {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -97,23 +80,9 @@
|
|||
<h3> Other People's Things </h3>
|
||||
|
||||
<ul>
|
||||
<li>XKCD <a href='http://geekwagon.net/projects/xkcd1190/' target='_blank'>Time</a> (and its <a href='https://explainxkcd.com/wiki/index.php/1190:_Time' target='_blank'>wiki page</a>)</li>
|
||||
<li><a href='https://xkcd.com/1732/'>This comic</a> from XKCD. (Also <a href='https://xkcd.com/926/'>this one</a>)</li>
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div id="tilde_ring">
|
||||
<p> <a id="tilde_town_ring" class="tilde_ring_link" href="">random ~user</a>
|
||||
| <a href="https://tilde.town/~um/tilde_ring/join.html">join ~ring</a>
|
||||
| <a id="tilde_town_ring_next" class="tilde_ring_link" href="">next ~user</a> </p>
|
||||
<script type="text/javascript">
|
||||
var ringjs = document.createElement('script')
|
||||
ringjs.src = document.location.protocol + '//tilde.town/~um/tilde_ring/tilde_ring.js'
|
||||
document.getElementById('tilde_ring').appendChild(ringjs)
|
||||
</script>
|
||||
</div>
|
||||
<p id='license'> Unless otherwise noted, my work is licensed <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>.</p>
|
||||
</footer>
|
||||
</div> <!-- terminal -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue