44 lines
774 B
CSS
44 lines
774 B
CSS
@font-face {
|
|
font-family: 'Lato';
|
|
src: url('../static/resources/fonts/lato-light.woff');
|
|
}
|
|
html {
|
|
background-image: url("../static/resources/images/bg.png")
|
|
}
|
|
td {
|
|
min-width: 100px;
|
|
height: 100px;
|
|
background-color: #2C3134;
|
|
transition: background-color 2s ease;
|
|
}
|
|
.player {
|
|
transition: background-color 0s ease
|
|
}
|
|
.main {
|
|
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;
|
|
}
|
|
.form {
|
|
font-family: Lato;
|
|
font-size: 20px;
|
|
margin-left:5%;
|
|
}
|
|
.scoreboard {
|
|
font-family: Lato;
|
|
font-size: 20px;
|
|
color: #ffffff;
|
|
position: fixed;
|
|
padding: 5px 10px 5px 10px;
|
|
margin-left: 45%;
|
|
margin-right: 45%;
|
|
z-index: 1;
|
|
background-color: #000;
|
|
opacity: 0.7;
|
|
|
|
} |