2020-07-17 10:03:38 +02:00
|
|
|
html,
|
|
|
|
body {
|
2023-04-03 08:12:43 +02:00
|
|
|
font-family: Inter, sans-serif;
|
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%;
|
|
|
|
}
|
2023-04-01 06:31:58 +02:00
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
2023-04-02 05:40:01 +02:00
|
|
|
width: 15px;
|
|
|
|
background: var(--base50);
|
2023-04-01 06:31:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2023-04-02 05:40:01 +02:00
|
|
|
border: 7px solid rgba(0, 0, 0, 0);
|
|
|
|
background-color: var(--base300);
|
|
|
|
background-clip: padding-box;
|
2023-04-01 06:31:58 +02:00
|
|
|
}
|
|
|
|
|
2023-04-02 05:40:01 +02:00
|
|
|
body::-webkit-scrollbar-track,
|
|
|
|
main::-webkit-scrollbar-track {
|
|
|
|
background-color: var(--base50);
|
2023-04-01 06:31:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2023-04-02 05:40:01 +02:00
|
|
|
border: 7px solid rgba(0, 0, 0, 0);
|
|
|
|
background-color: var(--base600);
|
|
|
|
background-clip: padding-box;
|
2023-04-01 06:31:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2023-04-02 05:40:01 +02:00
|
|
|
border: 4px solid rgba(0, 0, 0, 0);
|
|
|
|
background-color: var(--base800);
|
|
|
|
background-clip: padding-box;
|
2023-04-01 06:31:58 +02:00
|
|
|
}
|