2021-05-26 19:34:31 +02:00
|
|
|
#game {
|
|
|
|
height: 100%;
|
2021-06-08 15:38:43 +02:00
|
|
|
width: 100%;
|
2021-05-26 19:34:31 +02:00
|
|
|
grid-column-start: 1;
|
2021-06-08 15:38:43 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background: url(/img/background.jpg) no-repeat center center fixed;
|
|
|
|
-webkit-background-size: cover; /* For WebKit*/
|
|
|
|
-moz-background-size: cover; /* Mozilla*/
|
|
|
|
-o-background-size: cover; /* Opera*/
|
|
|
|
background-size: cover; /* Generic*/
|
2021-06-24 11:04:36 +02:00
|
|
|
}
|
|
|
|
|
2021-07-11 18:28:23 +02:00
|
|
|
.red {
|
|
|
|
background-color: #F47A93;
|
|
|
|
}
|
|
|
|
|
|
|
|
.green {
|
|
|
|
background-color: #6C9A8B;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blue {
|
|
|
|
background-color: #4169E1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.yellow {
|
|
|
|
background-color: #FFDDA1;
|
|
|
|
}
|
|
|
|
|
2021-06-24 11:04:36 +02:00
|
|
|
@media only screen and (max-width: 980px) {
|
|
|
|
#game {
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
|
|
|
}
|
2021-05-26 19:34:31 +02:00
|
|
|
}
|