mirror of
https://github.com/exogen/vl2-forge.git
synced 2026-01-20 03:54:47 +00:00
33 lines
660 B
CSS
33 lines
660 B
CSS
:root {
|
|
--system-ui: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
}
|
|
|
|
/* Box sizing rules */
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Prevent font size inflation */
|
|
html {
|
|
-moz-text-size-adjust: 100%;
|
|
-webkit-text-size-adjust: 100%;
|
|
text-size-adjust: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100vh;
|
|
background-color: #699697;
|
|
background-image: url("../public/noise.png"),
|
|
linear-gradient(to bottom, #5be9ee 0%, #1e4172 100%);
|
|
background-repeat: repeat, repeat;
|
|
}
|