Files
isdefoobaropen/src/open.scss
2019-03-11 13:42:22 +01:00

24 lines
304 B
SCSS

// Styles for the "Open" page
@keyframes starrotation {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(90deg);
}
100% {
transform: rotate(360deg);
}
}
body.open {
background-color: #a3d165;
margin: 0;
overflow: hidden;
}
canvas {
width: 100%;
height: 100%;
}