34 lines
523 B
CSS
34 lines
523 B
CSS
html {
|
|
scroll-behavior: smooth;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
display: block;
|
|
}
|
|
|
|
main {
|
|
height: 100dvh;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 1rem;
|
|
color: white;
|
|
background-color: #97c2fc;
|
|
box-shadow: 0 0 0.4rem 0.2rem rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.graph {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|