games/style.css
2022-10-21 13:05:06 +02:00

13 lines
255 B
CSS

@import url("https://fonts.googleapis.com/css?family=Permanent+Marker");
* {
box-sizing: border-box;
}
#app {
display: flex;
overflow: hidden;
position: relative;
width: 100vw;
height: 100vh;
background-image: linear-gradient(blue, cyan);
}