2021-10-06 11:23:30 +02:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: local(''),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-regular.woff2') format('woff2'),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-regular.woff') format('woff');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
src: local(''),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-500.woff2') format('woff2'),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-500.woff') format('woff');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 900;
|
|
|
|
src: local(''),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-900.woff2') format('woff2'),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-900.woff') format('woff');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
src: local(''),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-700.woff2') format('woff2'),
|
|
|
|
url('./assets/fonts/Roboto/roboto-v29-latin-700.woff') format('woff');
|
|
|
|
}
|
|
|
|
|
2021-05-07 18:30:06 +02:00
|
|
|
* {
|
2021-05-06 19:03:31 +02:00
|
|
|
margin: 0;
|
2021-05-07 18:30:06 +02:00
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
2021-05-06 19:03:31 +02:00
|
|
|
}
|
|
|
|
|
2021-05-07 18:30:06 +02:00
|
|
|
body {
|
2021-10-06 11:23:30 +02:00
|
|
|
--color-background: #242b33;
|
|
|
|
--color-primary: #effbff;
|
|
|
|
--color-accent: #6ee2ff;
|
2021-05-24 14:54:46 +02:00
|
|
|
--spacing-ui: 10px;
|
2021-05-07 18:30:06 +02:00
|
|
|
|
|
|
|
background-color: var(--color-background);
|
2021-05-10 19:02:16 +02:00
|
|
|
transition: background-color 0.3s;
|
2021-10-06 11:23:30 +02:00
|
|
|
font-family: Roboto, sans-serif;
|
2021-05-09 18:36:55 +02:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--color-primary);
|
|
|
|
text-decoration: none;
|
2021-10-06 11:23:30 +02:00
|
|
|
}
|