create custom php template for book club landing
This commit is contained in:
79
assets/css/static.css
Normal file
79
assets/css/static.css
Normal file
@ -0,0 +1,79 @@
|
||||
: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 */
|
||||
1
assets/css/static.css.map
Normal file
1
assets/css/static.css.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../scss/static.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EAEA;EACA;EACA;;;AAEF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EAEA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AACA;EACE;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAIJ;AAAA;AAAA;AAAA;AAAA;AAMA;EACE","file":"static.css"}
|
||||
Reference in New Issue
Block a user