Fix some sizes and set a global font

This commit is contained in:
Charles Gould 2017-01-06 01:35:14 -05:00
parent 426684c730
commit d1bf91422d
2 changed files with 16 additions and 11 deletions

View File

@ -47,7 +47,7 @@
} }
.right.col .body { .right.col .body {
padding: 0 1em; padding: 0 10px;
} }
/* Common rules */ /* Common rules */
@ -61,6 +61,10 @@
display: none; display: none;
} }
body {
font-family: "Lucida Sans Unicode", sans-serif;
}
button { button {
padding: 6px 12px; padding: 6px 12px;
} }
@ -69,10 +73,11 @@ button:hover {
cursor: pointer; cursor: pointer;
} }
h1 { /* Waiting pane rules */
font: 24pt sans-serif;
font-variant: small-caps; #waitingDiv h1 {
text-align: center font-size: 28px;
text-align: center
} }
/* Chat rules */ /* Chat rules */
@ -97,7 +102,7 @@ h1 {
#messageInput { #messageInput {
width: 100%; width: 100%;
height: 42px; height: 50px;
padding-left: 10px; padding-left: 10px;
} }

View File

@ -1,14 +1,14 @@
/* Based on http://tobiasahlin.com/spinkit */ /* Based on http://tobiasahlin.com/spinkit */
.sk-cube-grid { .sk-cube-grid {
width: 200px; width: 200px; /* Should be 5x the width below */
height: 200px; height: 240px; /* Should be 6x the height below */
margin: 35px auto; margin: 0 auto;
} }
.sk-cube-grid .sk-cube { .sk-cube-grid .sk-cube {
width: 20%; width: 40px;
height: 20%; height: 40px;
float: left; float: left;
-webkit-animation: sk-cubeGridScaleDelay 2s infinite ease-in-out; -webkit-animation: sk-cubeGridScaleDelay 2s infinite ease-in-out;
animation: sk-cubeGridScaleDelay 2s infinite ease-in-out; animation: sk-cubeGridScaleDelay 2s infinite ease-in-out;