mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
23 lines
394 B
CSS
23 lines
394 B
CSS
html body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100vh;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
}
|
|
|
|
#app {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
background-color: plum;
|
|
font-size: 6em;
|
|
color: aliceblue;
|
|
}
|
|
|
|
#title {
|
|
font-size: 0.5em;
|
|
color: black;
|
|
margin-bottom: 0.5em;
|
|
}
|