Projektmanagement-Game/public/css/game.css
koenigmarcel cc24b885e8 1
2021-06-24 11:04:36 +02:00

20 lines
504 B
CSS

#game {
height: 100%;
width: 100%;
grid-column-start: 1;
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*/
}
@media only screen and (max-width: 980px) {
#game {
height: auto;
width: auto;
}
}