Files
somos-infinitos-theme/assets/scss/static.scss

84 lines
1.6 KiB
SCSS

: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;
// border-radius: 2566px;
background: radial-gradient(50% 50% at 50% 50%, rgba(142, 154, 236, 0.40) 0%, rgba(142, 154, 236, 0.00) 100%);
}
a {
color: var(--foreground-text);
}
.btn {
border: 1px solid;
border-radius: 0.85em;
padding: .75em .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;
a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
.header-logo {
position: absolute;
top: 0;
left: 63px;
}
.logo-spacer {
width: 155px;
}
ul.pages-list {
display: flex;
justify-content: space-between;
list-style-type: none;
gap: 2em;
margin: 0;
padding: 0;
}
.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;
}