Implements the new Codex.

This commit is contained in:
Neerti
2017-04-03 12:41:59 -04:00
parent d4b6fc9f32
commit a4a05ae4ec
14 changed files with 888 additions and 15 deletions

29
html/browser/codex.css Normal file
View File

@@ -0,0 +1,29 @@
body
{
background-image: url("paper_bg.png");
}
.button-group .button
{
border: 1px solid RoyalBlue;
color: black;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
width: 40%;
display: block;
}
.button-group .button:not(:last-child)
{
border-bottom: none; /* Will hopefully prevent double borders */
}
.button-group .button:hover
{
background-color: RoyalBlue;
color: white;
}