15 lines
181 B
CSS
15 lines
181 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
outline: none;
|
|
position: relative;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
body {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background-color: #888;
|
|
}
|