17 lines
311 B
CSS
17 lines
311 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
font-size: 18pt;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
a {
|
|
color: mediumblue;
|
|
}
|
|
|
|
input, textarea {
|
|
font: inherit;
|
|
} |