31 lines
533 B
CSS
31 lines
533 B
CSS
|
@charset "UTF-8";
|
||
|
|
||
|
body {
|
||
|
font-size: 16px;
|
||
|
/* overflow-y: auto; */
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
min-width: 360px;
|
||
|
min-height: 400px;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
h1,h2,h3,h4,h5 {
|
||
|
font-family: Ubuntu,Cantarell,Roboto,-apple-system,BlinkMacSystemFont,system-ui,Segoe UI,Noto Sans,sans-serif,Helvetica,Arial;
|
||
|
}
|
||
|
|
||
|
#divsection {
|
||
|
margin: 0 auto;
|
||
|
max-width: 900px;
|
||
|
width: 92%;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.mydiv {
|
||
|
margin: 1em;
|
||
|
}
|