mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-30 21:05:12 +08:00
21 lines
471 B
CSS
21 lines
471 B
CSS
:root {
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
font-weight: 400;
|
|
font-synthesis: none;
|
|
line-height: 1.5;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: var(--color-foreground);
|
|
background: var(--color-background);
|
|
min-width: 360px;
|
|
min-height: 540px;
|
|
min-height: 100vh;
|
|
min-height: calc(min(540px, 100vh));
|
|
}
|