mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
fixed #110 rewrite of tab-view and better fonts
This commit is contained in:
parent
06351e5828
commit
550d14fbef
11 changed files with 171 additions and 82 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
BIN
static/fonts/2D6D36_0_0.eot
Normal file
BIN
static/fonts/2D6D36_0_0.eot
Normal file
Binary file not shown.
BIN
static/fonts/2D6D36_0_0.ttf
Normal file
BIN
static/fonts/2D6D36_0_0.ttf
Normal file
Binary file not shown.
BIN
static/fonts/2D6D36_0_0.woff
Normal file
BIN
static/fonts/2D6D36_0_0.woff
Normal file
Binary file not shown.
BIN
static/fonts/2D6D36_0_0.woff2
Normal file
BIN
static/fonts/2D6D36_0_0.woff2
Normal file
Binary file not shown.
|
|
@ -3,6 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Chuck</title>
|
||||
<link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="/static/css/screen.css" type="text/css" media="screen">
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue