File size: 709 Bytes
4fd1234 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | :root {
--fc-blue: #002395;
--fc-blue-dark: #001a6e;
--fc-blue-light: #1f4fd6;
--fc-red: #ed2939;
--fc-paper: #fdfaf3;
--fc-ink: #15182b;
--fc-muted: #888;
--fc-border: #ececec;
--fc-card-shadow: 0 1px 4px rgba(0, 35, 149, 0.06);
font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
color: var(--fc-ink);
background: var(--fc-paper);
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: var(--fc-paper);
}
#root {
min-height: 100vh;
}
button {
font-family: inherit;
}
textarea,
input {
font-family: inherit;
}
|