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

View File

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