Styling: Background, Table, and Fonts

This commit is contained in:
eorg_oz 2017-03-22 16:19:25 +01:00
parent db2173cfcb
commit 687a0a7d41
5 changed files with 19 additions and 9 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
node_modules node_modules
config.json config.json
db.json

View File

@ -1,5 +1,12 @@
@font-face {
font-family: "Beer";
src: url(/fonts/NotoColorEmoji.ttf);
unicode-range: U+1F37A;
}
body { body {
/*font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;*/ /*font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;*/
background-color: hsl(12, 43%, 8%);
color: hsl(76, 43%, 94%);
} }
a { a {
@ -8,22 +15,24 @@ a {
h1{ h1{
text-align: center; text-align: center;
margin-top: 50px;
font-family: "Beer", "Helvetica Neue", Helvetica, Arial, sans-serif;
} }
.controls{ .controls{
text-align:center; text-align:center;
} }
.jQBracket { .jQBracket {
margin:0 auto; margin: 80px auto 0 auto;
} }
#refresh { #refresh {
margin:0 auto; margin: 0 auto;
} }
.label{ .label{
font-size:100%; font-size: 100%;
color: black; color: black;
} }

Binary file not shown.

View File

@ -21,8 +21,8 @@ iosocket.on('stateChange', function(state){
}, },
teamWidth: 130, teamWidth: 130,
scoreWidth: 20, scoreWidth: 20,
matchMargin: 20, matchMargin: 35,
roundMargin: 20 roundMargin: 40
}); });
$('.increment').click(function() { $('.increment').click(function() {

View File

@ -22,8 +22,8 @@ iosocket.on('stateChange', function(state){
}, },
teamWidth: 130, teamWidth: 130,
scoreWidth: 20, scoreWidth: 20,
matchMargin: 20, matchMargin: 35,
roundMargin: 20 roundMargin: 40
}); });
}); });