mirror of
https://github.com/NovaOSS/nova-web.git
synced 2024-11-26 00:23:57 +01:00
126 lines
2 KiB
CSS
126 lines
2 KiB
CSS
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background-color: #03060d;
|
|
}
|
|
|
|
nav, main, footer {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
border: none;
|
|
color: #f3f3f3;
|
|
font-family: "Inter", sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1, h1 *, h2, h2 *, h3, h3 * {
|
|
font-weight: 700;
|
|
line-height: 3rem;
|
|
font-family: "Syne", sans-serif;
|
|
}
|
|
|
|
h2, h2 * {
|
|
line-height: 2.2rem;
|
|
}
|
|
|
|
h3, h3 * {
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
main a {
|
|
text-decoration: underline;
|
|
text-decoration-color: #b53d61;
|
|
text-underline-offset: 2px;
|
|
text-decoration-thickness: 5px;
|
|
transition: 0.2s;
|
|
}
|
|
main a:hover {
|
|
text-decoration-thickness: 0;
|
|
background: rgba(244, 90, 136, 0.3803921569);
|
|
}
|
|
|
|
main p {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
|
|
mark {
|
|
color: #f3f3f3;
|
|
background: #b53d61;
|
|
padding: 5px 7px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
kbd {
|
|
font-family: "Courier New", Courier, monospace;
|
|
font-weight: 600;
|
|
background: #252a38;
|
|
border-radius: 5px;
|
|
padding: 0.2rem 0.4rem;
|
|
border-bottom: 3px solid #0e0e0e;
|
|
}
|
|
|
|
blockquote {
|
|
margin-left: 0;
|
|
padding: 1rem 1rem;
|
|
border-left: 5px solid #28aaf0;
|
|
opacity: 0.8;
|
|
background: #252a38;
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
blockquote.error {
|
|
border-left-color: #ef3628;
|
|
}
|
|
blockquote.warning {
|
|
border-left-color: #f09928;
|
|
}
|
|
blockquote.success {
|
|
border-left-color: #28ef6b;
|
|
}
|
|
|
|
code {
|
|
font-family: "Courier New", Courier, monospace;
|
|
font-weight: 600;
|
|
background: #252a38;
|
|
border-radius: 5px;
|
|
padding: 0.2rem 0.4rem;
|
|
}
|
|
|
|
pre code *, pre code {
|
|
font-weight: normal;
|
|
}
|
|
|
|
p, p *, ol, ul, li {
|
|
line-height: 32px;
|
|
}
|
|
|
|
:focus:not(:focus-visible) {
|
|
outline: none;
|
|
}
|
|
|
|
.special-gradient {
|
|
background: linear-gradient(83deg, rgb(244, 90, 136) 7%, rgb(40, 170, 240) 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
body {
|
|
margin: 0 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
}/*# sourceMappingURL=base.css.map */ |