21 lines
317 B
CSS
21 lines
317 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background: #40318D;
|
|
color: #7C70DA;
|
|
font-family: 'Pixeloid Mono', 'Courier New', monospace;
|
|
font-size: 18px;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#root {
|
|
height: 100vh;
|
|
background: #40318D;
|
|
display: flex;
|
|
flex-direction: column;
|
|
} |