44 lines
807 B
CSS
44 lines
807 B
CSS
/*@media only screen and (max-height: 512px) {
|
|
html {
|
|
font-size: 6.75px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-height: 513px) and (max-height: 800px) {*/
|
|
html {
|
|
font-size: 2vh;/*10px;*/
|
|
}
|
|
/*}
|
|
|
|
@media only screen and (min-height: 2000px) {
|
|
html {
|
|
font-size: 30px;
|
|
}
|
|
}*/
|
|
|
|
html {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|