2022-03-23 17:52:30 +01:00
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap");
|
2022-03-20 19:58:52 +01:00
|
|
|
@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");
|
2022-03-18 16:59:18 +01:00
|
|
|
|
2022-03-13 22:30:57 +01:00
|
|
|
body {
|
|
|
|
|
background: none !important;
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
|
|
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
|
|
|
sans-serif;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
height: 100vh;
|
2022-03-18 16:59:18 +01:00
|
|
|
user-select: none;
|
2022-03-13 22:30:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#root {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code {
|
|
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
|
|
|
monospace;
|
|
|
|
|
}
|
2022-03-15 15:42:54 +01:00
|
|
|
|
|
|
|
|
@keyframes progress {
|
|
|
|
|
0% {
|
|
|
|
|
stroke-dasharray: 0, 264;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
stroke-dasharray: 264, 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-15 20:35:02 +01:00
|
|
|
|
|
|
|
|
@keyframes progress-bar {
|
|
|
|
|
from {
|
|
|
|
|
width: 0%;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|