2020-07-17 10:03:38 +02:00
|
|
|
html,
|
|
|
|
body {
|
2021-11-21 00:54:45 +01:00
|
|
|
font-family: Inter, -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans,
|
|
|
|
Ubuntu, Cantrell, 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
|
|
'Segoe UI Symbol';
|
2023-01-10 08:59:26 +01:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.5rem;
|
2020-07-17 10:03:38 +02:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
2020-09-22 06:34:55 +02:00
|
|
|
min-height: 100%;
|
2020-09-20 10:33:39 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-09-22 06:34:55 +02:00
|
|
|
flex: 1;
|
2022-12-13 05:46:43 +01:00
|
|
|
color: var(--font-color100);
|
2023-01-19 00:05:39 +01:00
|
|
|
background: var(--base50);
|
2020-07-17 10:03:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*,
|
|
|
|
*:before,
|
|
|
|
*:after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
|
2020-08-07 07:03:02 +02:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2020-08-06 04:04:02 +02:00
|
|
|
font-weight: 400;
|
2020-10-10 05:37:24 +02:00
|
|
|
line-height: 30px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2020-08-06 04:04:02 +02:00
|
|
|
}
|
|
|
|
|
2020-08-04 03:12:28 +02:00
|
|
|
a,
|
|
|
|
a:active,
|
|
|
|
a:visited {
|
2020-09-16 05:34:30 +02:00
|
|
|
color: var(--primary400);
|
2023-01-02 21:26:10 +01:00
|
|
|
text-decoration: none;
|
2020-07-24 04:56:55 +02:00
|
|
|
}
|
|
|
|
|
2023-02-04 17:59:52 +01:00
|
|
|
p {
|
|
|
|
line-height: 1.8rem;
|
|
|
|
}
|
|
|
|
|
2020-08-04 03:12:28 +02:00
|
|
|
main {
|
2020-08-04 08:20:35 +02:00
|
|
|
flex: 1;
|
2020-09-22 06:34:55 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-08-04 03:12:28 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 00:42:01 +02:00
|
|
|
svg {
|
|
|
|
shape-rendering: geometricPrecision;
|
|
|
|
}
|
|
|
|
|
2020-09-17 09:17:11 +02:00
|
|
|
#__next {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-03-22 05:28:36 +01:00
|
|
|
flex: 1;
|
2020-09-17 09:17:11 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|