• Rework the JavaScript handler. • Fix the card generator. • Nuke all known XSS attacks. • Change the background to white. • Change some fonts on index.html to make it look more modern. • Remove a few ".old" pages. • Improve the mobile-friendliness of index.html. • Remove all styling on <select> tags. • Other varied bugfixes
32 lines
524 B
HTML
32 lines
524 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<style type="text/css" media="screen">
|
|
#errordiv {
|
|
margin: 10px auto;
|
|
max-width: 600px;
|
|
text-align: center;
|
|
padding-top: 2.5vmin;
|
|
}
|
|
#errordiv h1 {
|
|
margin: 30px 0;
|
|
font-size: 25vmin;
|
|
line-height: 1;
|
|
letter-spacing: -1px;
|
|
}
|
|
#errordiv h1, #errordiv strong {
|
|
font-family: Ubuntu;
|
|
}
|
|
#errordiv strong {
|
|
font-size: 5vmin;
|
|
padding-bottom: 5vmin;
|
|
display: block;
|
|
font-weight: 100;
|
|
}
|
|
</style>
|
|
|
|
<div id="errordiv">
|
|
{{ content }}
|
|
</div>
|