25 lines
471 B
CSS
25 lines
471 B
CSS
:root {
|
|
color: #12263a;
|
|
background:
|
|
radial-gradient(circle at top left, #d7e7f2 0%, transparent 45%),
|
|
linear-gradient(180deg, #f4f8fb 0%, #e8eef3 100%);
|
|
font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|