fixed #110 rewrite of tab-view and better fonts

This commit is contained in:
Jeena 2015-02-22 17:34:56 +01:00
parent 06351e5828
commit 550d14fbef
11 changed files with 171 additions and 82 deletions

View file

@ -1,3 +1,16 @@
@font-face {
font-family: 'Joystix';
src: url('/static/fonts/2D6D36_0_0.eot');
src: url('/static/fonts/2D6D36_0_0.eot?#iefix') format('embedded-opentype'),
url('/static/fonts/2D6D36_0_0.woff2') format('woff2'),
url('/static/fonts/2D6D36_0_0.woff') format('woff'),
url('/static/fonts/2D6D36_0_0.ttf') format('truetype');
}
h1, h2, h3, h4, th {
font-weight: normal;
}
html, body {
width: 100%;
height: 100%;
@ -6,10 +19,12 @@ html, body {
body {
background: #222;
color: #ccc;
font-family: "Lucida Grande", sans-serif;
font-family: 'Joystix', "Lucida Grande", sans-serif;
text-transform: uppercase;
margin: 0;
padding: 0;
display: table;
display: table;
-moz-osx-font-smoothing: grayscale;
}
#back-to-menu {
@ -18,10 +33,10 @@ body {
}
::selection {
background: #607950; /* Safari */
background: #720000; /* Safari */
}
::-moz-selection {
background: #607950; /* Firefox */
background: #720000; /* Firefox */
}
input, button {
@ -30,6 +45,8 @@ input, button {
border: 0;
padding: 0.3em 0.6em;
font-size: 1em;
font-family: inherit;
text-transform: inherit;
}
#createform, #customjoinform, #game {
@ -120,4 +137,4 @@ canvas {
#devtools p {
padding: 5px 0 0 0;
margin: 0;
}
}