Front
This commit is contained in:
38
src/styles/App.css
Normal file
38
src/styles/App.css
Normal 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
33
src/styles/index.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user