public/css/styles.3c16fa11f5c61484ee5ec1ac349696f2785618fe48c1083f3bbc0395c162a5d56e99cbfe97b734fcc6597969970d589b651a0245aec395b2a5183f97402f6784.css
2025-06-06 18:11:48 -06:00

394 lines
8.3 KiB
CSS

@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 100;
src: local("Source Sans 3 ExtraLight"), local("SourceSans3-ExtraLight"), url("/fonts/static/SourceSans3-ExtraLight.woff2") format("woff2"), url("/fonts/static/SourceSans3-ExtraLight.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 200;
src: local("Source Sans 3 ExtraLight"), local("SourceSans3-ExtraLight"), url("/fonts/static/SourceSans3-ExtraLight.woff2") format("woff2"), url("/fonts/static/SourceSans3-ExtraLight.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 300;
src: local("Source Sans 3 Light"), local("SourceSans3-Light"), url("/fonts/static/SourceSans3-Light.woff2") format("woff2"), url("/fonts/static/SourceSans3-Light.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 400;
src: local("Source Sans 3 Regular"), local("SourceSans3-Regular"), url("/fonts/static/SourceSans3-Regular.woff2") format("woff2"), url("/fonts/static/SourceSans3-Regular.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: italic;
font-display: swap;
font-weight: 400;
src: local("Source Sans 3 Italic"), local("SourceSans3-Italic"), url("/fonts/static/SourceSans3-Italic.woff2") format("woff2"), url("/fonts/static/SourceSans3-Italic.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 500;
src: local("Source Sans 3 Medium"), local("SourceSans3-Medium"), url("/fonts/static/SourceSans3-Medium.woff2") format("woff2"), url("/fonts/static/SourceSans3-Medium.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 600;
src: local("Source Sans 3 SemiBold"), local("SourceSans3-SemiBold"), url("/fonts/static/SourceSans3-SemiBold.woff2") format("woff2"), url("/fonts/static/SourceSans3-SemiBold.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 700;
src: local("Source Sans 3 Bold"), local("SourceSans3-Bold"), url("/fonts/static/SourceSans3-Bold.woff2") format("woff2"), url("/fonts/static/SourceSans3-Bold.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: italic;
font-display: swap;
font-weight: 700;
src: local("Source Sans 3 Bold Italic"), local("SourceSans3-BoldItalic"), url("/fonts/static/SourceSans3-BoldItalic.woff2") format("woff2"), url("/fonts/static/SourceSans3-BoldItalic.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 800;
src: local("Source Sans 3 ExtraBold"), local("SourceSans3-ExtraBold"), url("/fonts/static/SourceSans3-ExtraBold.woff2") format("woff2"), url("/fonts/static/SourceSans3-ExtraBold.ttf") format("truetype");
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-display: swap;
font-weight: 900;
src: local("Source Sans 3 Black"), local("SourceSans3-Black"), url("/fonts/static/SourceSans3-Black.woff2") format("woff2"), url("/fonts/static/SourceSans3-Black.ttf") format("truetype");
}
* {
font-family: 'Source Sans 3', sans-serif;
}
/* _layout.sass */
/* Variables */
html {
background: #0a0c11;
}
/* Base Layout */
body {
background: #10131a;
color: #ffffff;
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
width: 100%;
height: 100%;
max-width: 1024px;
margin: 1.5rem auto;
padding: 1.5rem;
box-sizing: border-box;
border-radius: 8px;
}
header {
background: #1a1e29;
margin: 1.5rem;
padding: 1.5rem;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
border-radius: 8px;
margin: 0 auto;
}
header h1, header h1 a {
margin: 0;
font-size: 1.6rem;
font-weight: 900;
color: #ffffff;
text-decoration: none;
padding: 0;
transition: color 0.4s ease-in-out;
}
header h1:hover, header h1:focus, header h1 a:hover, header h1 a:focus {
color: #6fffd2;
}
nav {
display: flex;
gap: 1.5rem;
align-items: center;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
nav ul li {
margin: 0;
padding: 0;
}
nav ul li a {
padding: 0.4rem 0.6rem;
border-radius: 8px;
background: #1a3e70;
color: #ffffff;
text-decoration: none;
font-weight: 500;
transition: background 0.4s ease-in-out;
}
nav ul li a:hover, nav ul li a:focus {
background: #00897b;
color: #ffffff;
}
@media (max-width: 600px) {
header {
flex-direction: column;
align-items: flex-start;
gap: 1.5rem;
}
nav {
width: 100%;
justify-content: flex-start;
margin-top: 1.5rem;
}
}
main {
margin: 1.5rem 0;
padding: 1.5rem;
}
footer {
background: #1a1e29;
margin: 1.5rem;
padding: 1.5rem;
border-radius: 8px;
margin: 0 auto;
text-align: center;
}
footer p {
margin: 0;
font-size: 0.9rem;
color: #bfc9e6;
text-align: center;
}
section {
border-bottom: 3px solid #1a1e29;
margin: 2rem 0;
padding-bottom: 2rem;
}
#page-header {
border-bottom: 3px solid #1a1e29;
margin: 2rem 0;
padding-bottom: 2rem;
text-align: center;
}
#page-header h1 {
margin: 0;
}
#page-header .time {
font-size: 0.8rem;
color: #bfc9e6;
}
table#taxonomy-table {
width: 100%;
border-collapse: collapse;
box-sizing: border-box;
background: #1a1e29;
text-align: left;
}
table#taxonomy-table tr {
border-bottom: 3px solid #10131a;
}
table#taxonomy-table tr:nth-child(even) {
background: #161923;
transition: background 0.4s ease-in-out;
}
table#taxonomy-table tr:nth-child(odd) {
background: #202532;
transition: background 0.4s ease-in-out;
}
table#taxonomy-table tr:hover, table#taxonomy-table tr:focus {
background: #3a4054;
}
table#taxonomy-table thead {
text-align: left;
border: none;
background: #0a0c11;
border-radius: 8px 8px 0 0;
}
table#taxonomy-table th {
color: #ffffff;
padding: 0.6rem 0.6rem;
text-align: left;
font-weight: 600;
border: none;
}
table#taxonomy-table td {
padding: 0.3rem 0.6rem;
text-align: left;
font-weight: 600;
border: none;
}
table#taxonomy-table a.term-link {
padding: 0.2rem 0.6rem;
margin: 0.2rem;
display: inline-block;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
color: #ffffff;
transition: color 0.4s ease-in-out, background 0.4s ease-in-out;
}
table#taxonomy-table a.term-link:hover, table#taxonomy-table a.term-link:focus {
color: #0a0c11 !important;
background: #bfc9e6 !important;
}
table#taxonomy-table a.taxonomy-name {
padding: 0;
margin: 0.2rem;
display: inline-block;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
color: #ffffff;
transition: color 0.4s ease-in-out;
}
table#taxonomy-table a.taxonomy-name:hover, table#taxonomy-table a.taxonomy-name:focus {
color: #6fffd2;
}
#taxonomy-page a.term-link {
padding: 0.3rem 1.2rem;
margin: 0.2rem;
display: inline-block;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
color: #ffffff;
transition: color 0.4s ease-in-out;
font-size: 1.2rem;
}
#taxonomy-page a.term-link:hover, #taxonomy-page a.term-link:focus {
color: #0a0c11;
}
/* _text.sass */
a {
color: #3380ff;
text-decoration: underline;
transition: color 0.3s ease-in-out;
}
a:hover, a:focus {
color: #1de9b6;
}
#quick-links {
text-align: left;
}
#link-list {
display: flex;
gap: 1.5rem;
align-items: left;
margin: 1.5rem 0;
}
#link-list h2 {
flex: none;
}
#link-list ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
#link-list ul li {
margin: 0;
padding: 0;
}
#link-list ul li a {
padding: 0.3rem 0.6rem;
border-radius: 8px;
background: #8fc6ff;
color: #0a0c11;
text-decoration: none;
font-weight: 500;
transition: background 0.3s ease-in-out;
}
#link-list ul li a:hover, #link-list ul li a:focus {
background: #6fffd2;
}
#publications ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 1em;
}
#publications ul li {
background: #1a1e29;
border-radius: 8px;
padding: 1em 1.5em;
}
/*# sourceMappingURL=styles.css.map */