mirror of
https://github.com/NovaOSS/LingoSynth.git
synced 2024-11-26 05:33:57 +01:00
35 lines
467 B
CSS
35 lines
467 B
CSS
|
html {
|
||
|
scroll-behavior: smooth;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 1rem;
|
||
|
background-color: #24273a;
|
||
|
}
|
||
|
|
||
|
* {
|
||
|
color: #eaedf7;
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
box-sizing: border-box;
|
||
|
font-family: "Inter", sans-serif;
|
||
|
}
|
||
|
|
||
|
nav, header, main, footer {
|
||
|
max-width: 800px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
nav a {
|
||
|
opacity: 0.8;
|
||
|
text-decoration: none;
|
||
|
margin-right: 1rem;
|
||
|
}
|
||
|
nav a:hover {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
margin-top: 2rem;
|
||
|
opacity: 0.5;
|
||
|
}/*# sourceMappingURL=main.css.map */
|