This commit is contained in:
2024-09-05 18:01:00 +02:00
parent b76e3cb1b8
commit 480d47de01
14 changed files with 1900 additions and 184 deletions

38
src/styles/App.css Normal file
View File

@@ -0,0 +1,38 @@
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #14181c;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: #ffffff;
}
.App-link {
color: #00a346;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

33
src/styles/index.css Normal file
View File

@@ -0,0 +1,33 @@
body {
margin: 0;
font-family: Avenir, -apple-system, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
background-color: #14181c;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
:root {
--background: #fff;
--foreground: #2c3e50;
--primary: #1caff2;
--secondary: #000;
--tertiary: rgba(64, 188, 244, 0.5);
--white: #fff;
--off-white: #ebebeb;
--black: #000;
}
.dark {
--background: #14181d;
--foreground: #76a0ca;
--secondary: #fff;
--tertiary: #526e89;
}