2022-08-27 15:58:36 +02:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap');
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap');
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap');
|
2022-12-16 11:55:12 +01:00
|
|
|
@import url("https://use.typekit.net/wxh5ury.css");
|
2022-12-22 20:14:09 +01:00
|
|
|
@import url("https://use.typekit.net/qgr5ebd.css");
|
2022-03-18 16:59:18 +01:00
|
|
|
|
2022-10-27 23:24:38 +02:00
|
|
|
html {
|
|
|
|
|
color-scheme: normal !important;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-13 22:30:57 +01:00
|
|
|
body {
|
|
|
|
|
background: none !important;
|
|
|
|
|
margin: 0;
|
2022-08-27 15:58:36 +02:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
|
|
|
|
|
'Droid Sans', 'Helvetica Neue', sans-serif;
|
2022-03-13 22:30:57 +01:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
height: 100vh;
|
2022-03-18 16:59:18 +01:00
|
|
|
user-select: none;
|
2022-03-25 23:56:50 +01:00
|
|
|
overflow: hidden !important;
|
2022-03-13 22:30:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#root {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code {
|
2022-08-27 15:58:36 +02:00
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
2022-03-13 22:30:57 +01:00
|
|
|
}
|
2022-03-15 15:42:54 +01:00
|
|
|
|
2022-03-15 20:35:02 +01:00
|
|
|
@keyframes progress-bar {
|
|
|
|
|
from {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-24 20:00:09 +01:00
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
2022-04-11 03:52:18 +00:00
|
|
|
|
|
|
|
|
.toast-inform {
|
2022-07-26 15:35:22 +02:00
|
|
|
background-color: #2980b9;
|
2022-04-11 03:52:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toast-success {
|
2022-07-26 15:35:22 +02:00
|
|
|
background-color: #27ae60;
|
2022-04-11 03:52:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toast-error {
|
2022-07-26 15:35:22 +02:00
|
|
|
background-color: #c0392b;
|
2022-04-11 03:52:18 +00:00
|
|
|
}
|