Projektmanagement-Game/public/css/game.css

13 lines
396 B
CSS
Raw Normal View History

2021-05-26 17:34:31 +00:00
#game {
height: 100%;
2021-06-08 13:38:43 +00:00
width: 100%;
2021-05-26 17:34:31 +00:00
grid-column-start: 1;
2021-06-08 13:38:43 +00: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-05-26 17:34:31 +00:00
}