77 lines
1.3 KiB
CSS
Raw Normal View History

2015-07-06 22:32:53 -04:00
@font-face {
2015-07-08 03:08:33 -04:00
font-family: 'Lato';
src: url('./resources/fonts/lato-light.woff');
2015-07-06 22:32:53 -04:00
}
2015-07-08 03:08:33 -04:00
2015-07-06 22:32:53 -04:00
html {
2015-07-08 03:08:33 -04:00
background-image: url("../static/resources/images/bg.png");
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
2015-07-06 22:32:53 -04:00
}
2015-07-08 03:08:33 -04:00
body {
overflow: hidden;
}
2015-07-06 22:32:53 -04:00
td {
2015-07-08 03:08:33 -04:00
min-width: 100px;
height: 100px;
background-color: #2C3134;
transition: background-color 2s ease;
2015-07-06 22:32:53 -04:00
}
2015-07-08 03:08:33 -04:00
2015-07-06 22:32:53 -04:00
.player {
2015-07-08 03:08:33 -04:00
transition: background-color 0s ease;
2015-07-06 22:32:53 -04:00
}
2015-07-08 03:08:33 -04:00
2015-07-06 22:32:53 -04:00
.main {
2015-07-08 03:08:33 -04:00
margin-left:40%;
margin-right:40%;
margin-top: 10%;
min-width:20%;
min-height:60%;
background:#e7e7e7;
box-shadow: 5px 5px 10px #229ad2;
border-radius: 25px;
2015-07-06 22:32:53 -04:00
}
2015-07-08 03:08:33 -04:00
2015-07-06 22:32:53 -04:00
.form {
2015-07-08 03:08:33 -04:00
font-family: Lato;
font-size: 20px;
margin-left:5%;
2015-07-06 22:32:53 -04:00
}
2015-07-08 03:08:33 -04:00
.scoreboard, .spectator {
2015-07-08 03:08:33 -04:00
font-family: Lato;
color: #ffffff;
position: fixed;
z-index: 1;
background-color: #000;
opacity: 0.7;
}
.scoreboard {
padding: 5px 10px 5px 10px;
font-size: 20px;
margin-left: 45%;
margin-right: 45%;
}
.spectator {
padding: 10px 15px 10px 15px;
font-size: 50px;
margin-left: 86%;
margin-right: 1%;
margin-top: 45%;
}
2015-07-08 03:08:33 -04:00
#redscore {
color: #E62E2E;
background-color: #E62E2E;
}
2015-07-06 22:32:53 -04:00
2015-07-08 03:08:33 -04:00
#bluescore {
color: #4343D8;
background-color: #4343D8;
2015-07-06 22:32:53 -04:00
}