80 lines
1.6 KiB
CSS
80 lines
1.6 KiB
CSS
:root {
|
|
--background: #040810;
|
|
--foreground-text: #FAF7EF;
|
|
--bg-accent: #8E9AEC; /* add 99 at the end for constellation, and 0/50% opacity for radial gradient */
|
|
--font-family-serif: "EB Garamond", serif;
|
|
--font-family-mono: "Jura", sans-serif;
|
|
--font-family-sans: "Sora", sans-serif;
|
|
}
|
|
|
|
html {
|
|
background: var(--background);
|
|
}
|
|
|
|
body {
|
|
height: 100vh;
|
|
font-family: var(--font-family-sans);
|
|
color: var(--foreground-text);
|
|
margin: 0;
|
|
background: radial-gradient(50% 50% at 50% 50%, rgba(142, 154, 236, 0.4) 0%, rgba(142, 154, 236, 0) 100%);
|
|
}
|
|
|
|
a {
|
|
color: var(--foreground-text);
|
|
}
|
|
|
|
.btn {
|
|
border: 1px solid;
|
|
border-radius: 0.85em;
|
|
padding: 0.75em 0.5em;
|
|
}
|
|
|
|
.site-navigation {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 50px;
|
|
font-family: var(--font-family-mono);
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
align-items: center;
|
|
}
|
|
.site-navigation a {
|
|
text-decoration: none;
|
|
}
|
|
.site-navigation a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.site-navigation .header-logo {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 63px;
|
|
}
|
|
.site-navigation .logo-spacer {
|
|
width: 155px;
|
|
}
|
|
.site-navigation ul.pages-list {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
list-style-type: none;
|
|
gap: 2em;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.site-navigation .action-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1em;
|
|
}
|
|
|
|
/* .div {
|
|
text-align: center;
|
|
padding-block: 20rem;
|
|
background: radial-gradient(circle at 85% 50%, rgba(142, 154, 236, 0.40) 0%, rgba(142, 154, 236, 0.00) 50%);
|
|
} */
|
|
.div h2 {
|
|
font-size: 38px;
|
|
}
|
|
|
|
/*# sourceMappingURL=static.css.map */
|