Nouveau thème pour 2026
This commit is contained in:
304
themes/2026/assets/css/article-header.css
Normal file
304
themes/2026/assets/css/article-header.css
Normal file
@@ -0,0 +1,304 @@
|
||||
/* En-tête d’article (pages). */
|
||||
|
||||
.article-header {
|
||||
--article-meta-vertical-space: var(--space-2);
|
||||
gap: var(--space-4);
|
||||
padding-bottom: var(--space-6);
|
||||
}
|
||||
|
||||
.article-header > h1 {
|
||||
margin-top: var(--space-5);
|
||||
margin-bottom: var(--space-5);
|
||||
max-width: 30ch;
|
||||
width: 100%;
|
||||
margin-inline: auto;
|
||||
font-size: clamp(1.9rem, 3.6vw, 3.5rem);
|
||||
line-height: 1.05;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.01em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.article-header > .article-meta-block {
|
||||
margin-top: 0;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
|
||||
gap: var(--space-6);
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.article-header > .article-meta-block.article-meta-block--without-cover {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.article-header > .article-meta-block.article-meta-block--without-cover > .article-meta {
|
||||
width: min(100%, var(--max-width-reading));
|
||||
margin-inline: auto;
|
||||
align-items: center;
|
||||
border-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.article-header > .article-meta-block.article-meta-block--without-cover .article-meta-main {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.article-header > .article-meta-block.article-meta-block--without-cover .breadcrumbs > ol,
|
||||
.article-header > .article-meta-block.article-meta-block--without-cover .article-publication,
|
||||
.article-header > .article-meta-block.article-meta-block--without-cover .page-links > ul {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.article-header > .article-meta-block.article-meta-block--without-cover .cover-meta {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.article-header .article-cover {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.article-header .article-cover > a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.article-header .article-cover img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.article-header .article-meta {
|
||||
margin-top: 0;
|
||||
border-left: 1px solid var(--color-border-strong);
|
||||
padding-left: var(--space-6);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-3);
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.article-header .article-meta-main {
|
||||
margin-top: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.article-header .article-meta-main > * + * {
|
||||
margin-top: var(--article-meta-vertical-space);
|
||||
}
|
||||
|
||||
.article-header .breadcrumbs li,
|
||||
.article-header .article-publication {
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.86rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
.article-header .breadcrumbs {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.article-header .article-publication {
|
||||
margin-top: var(--article-meta-vertical-space);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
}
|
||||
|
||||
.article-header .article-publication > time {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.article-header .page-links {
|
||||
margin-top: var(--article-meta-vertical-space);
|
||||
}
|
||||
|
||||
.article-header .page-links a {
|
||||
min-height: 2.35rem;
|
||||
}
|
||||
|
||||
.article-header .article-origin-link {
|
||||
margin-top: var(--article-meta-vertical-space);
|
||||
border-left: var(--border-width-regular) solid var(--color-section-divider-1);
|
||||
padding: var(--space-3);
|
||||
background-color: rgba(231, 184, 63, 0.14);
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-kicker {
|
||||
margin-top: 0;
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.82rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-hint {
|
||||
margin-top: var(--space-2);
|
||||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button {
|
||||
margin-top: var(--space-3);
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button > a {
|
||||
width: 100%;
|
||||
min-height: 2.8rem;
|
||||
padding: 0.5rem 1rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
gap: var(--space-1);
|
||||
font-family: var(--font-body);
|
||||
font-size: 1rem;
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button > a.ui-button {
|
||||
border-color: color-mix(in srgb, var(--color-section-divider-1) 62%, var(--color-border-strong));
|
||||
background: linear-gradient(180deg, rgba(217, 122, 63, 0.36) 0%, rgba(17, 27, 42, 0.94) 100%);
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button > a.ui-button:is(:hover, :focus-visible) {
|
||||
background: linear-gradient(180deg, rgba(217, 122, 63, 0.52) 0%, rgba(17, 27, 42, 0.98) 100%);
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button > a.ui-button:visited {
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button > a.ui-button:hover .article-origin-link-button-url,
|
||||
.article-header .article-origin-link-button > a.ui-button:focus-visible .article-origin-link-button-url {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button-label {
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.92rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.article-header .article-origin-link-button-url {
|
||||
font-size: 0.84rem;
|
||||
line-height: 1.35;
|
||||
word-break: break-all;
|
||||
color: inherit;
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
.article-header .cover-meta {
|
||||
margin-top: auto;
|
||||
border-top: var(--border-width-regular) solid var(--color-accent-2);
|
||||
padding-top: var(--space-4);
|
||||
}
|
||||
|
||||
.article-header .cover-meta > h2 {
|
||||
margin-top: 0;
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.86rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
.article-header .cover-meta > p {
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
.article-header .cover-title,
|
||||
main > article figure.figure-media > figcaption.cover-meta .cover-title {
|
||||
font-family: var(--font-heading);
|
||||
font-size: 1.36rem;
|
||||
line-height: 1.15;
|
||||
letter-spacing: 0.01em;
|
||||
font-weight: 400;
|
||||
text-transform: none;
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
.article-header .cover-description,
|
||||
main > article figure.figure-media > figcaption.cover-meta .cover-description {
|
||||
font-family: var(--font-body);
|
||||
font-size: 0.95rem;
|
||||
letter-spacing: normal;
|
||||
text-transform: none;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.article-header .cover-meta > * + * {
|
||||
margin-top: var(--article-meta-vertical-space);
|
||||
}
|
||||
|
||||
.article-header .cover-attribution,
|
||||
main > article figure.figure-media > figcaption.cover-meta .cover-attribution {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
align-items: baseline;
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.86rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
.article-header .cover-attribution > strong,
|
||||
main > article figure.figure-media > figcaption.cover-meta .cover-attribution > strong {
|
||||
font: inherit;
|
||||
color: var(--color-heading);
|
||||
background-image: none;
|
||||
padding: 0;
|
||||
box-decoration-break: slice;
|
||||
-webkit-box-decoration-break: slice;
|
||||
}
|
||||
|
||||
.article-header .cover-meta > details {
|
||||
margin-top: var(--article-meta-vertical-space);
|
||||
}
|
||||
|
||||
.article-header .cover-meta > details > summary,
|
||||
main > article figure.figure-media > figcaption.cover-meta details > summary {
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.86rem;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
.article-header .cover-meta > details > p,
|
||||
main > article figure.figure-media > figcaption.cover-meta details > p {
|
||||
margin-top: var(--space-2);
|
||||
font-family: var(--font-body);
|
||||
font-size: 0.95rem;
|
||||
letter-spacing: normal;
|
||||
text-transform: none;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
.article-header > .article-meta-block {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.article-header .article-meta {
|
||||
border-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
.article-header > h1 {
|
||||
font-size: clamp(1.6rem, 8.4vw, 2.4rem);
|
||||
}
|
||||
}
|
||||
257
themes/2026/assets/css/base.css
Normal file
257
themes/2026/assets/css/base.css
Normal file
@@ -0,0 +1,257 @@
|
||||
html {
|
||||
color-scheme: dark;
|
||||
font-size: max(100%, var(--font-size-root-min));
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-body);
|
||||
font-size: var(--font-size-body);
|
||||
line-height: 1.7;
|
||||
background: linear-gradient(
|
||||
170deg,
|
||||
color-mix(in srgb, var(--color-background-wash) 16%, var(--color-background-alt)) 0%,
|
||||
color-mix(in srgb, var(--color-background-wash) 8%, var(--color-background-alt)) 46%,
|
||||
color-mix(in srgb, var(--color-background-wash) 4%, var(--color-background-deep)) 100%
|
||||
);
|
||||
color: var(--color-text);
|
||||
padding: var(--space-4);
|
||||
}
|
||||
|
||||
body > header,
|
||||
body > main,
|
||||
body > footer {
|
||||
width: min(100%, var(--max-width));
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
body > main,
|
||||
body > footer {
|
||||
margin-bottom: var(--space-6);
|
||||
}
|
||||
|
||||
body > main {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
gap: var(--space-6);
|
||||
}
|
||||
|
||||
main > article {
|
||||
min-width: 0;
|
||||
width: min(100%, var(--max-width-reading));
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
font-family: var(--font-heading);
|
||||
line-height: 1.15;
|
||||
color: var(--color-heading);
|
||||
text-wrap: balance;
|
||||
letter-spacing: 0.01em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(2rem, 4.2vw, 4rem);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: clamp(1.35rem, 2.2vw, 2rem);
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: clamp(1.05rem, 1.7vw, 1.35rem);
|
||||
}
|
||||
|
||||
main > article :is(strong, b) {
|
||||
font-weight: 800;
|
||||
color: var(--color-heading);
|
||||
text-shadow: none;
|
||||
background-image: linear-gradient(
|
||||
to bottom,
|
||||
color-mix(in srgb, var(--color-strong-highlight) 82%, var(--color-background-deep)) 0%,
|
||||
color-mix(in srgb, var(--color-strong-highlight) 92%, var(--color-background-deep)) 100%
|
||||
);
|
||||
background-size: 100% 1em;
|
||||
background-position: 0 52%;
|
||||
background-repeat: no-repeat;
|
||||
padding: 0 0.12em;
|
||||
box-decoration-break: clone;
|
||||
-webkit-box-decoration-break: clone;
|
||||
}
|
||||
|
||||
p,
|
||||
ul,
|
||||
ol,
|
||||
figure,
|
||||
pre,
|
||||
blockquote,
|
||||
table,
|
||||
section,
|
||||
article,
|
||||
aside,
|
||||
nav,
|
||||
details,
|
||||
dl {
|
||||
margin-top: var(--space-3);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--color-link);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-decoration-color: color-mix(in srgb, currentColor 72%, transparent);
|
||||
text-underline-offset: 0.15em;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus-visible {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration-thickness: 2px;
|
||||
text-decoration-color: currentColor;
|
||||
text-underline-offset: 0.2em;
|
||||
}
|
||||
|
||||
a.link-external:not(.link-affiliated) {
|
||||
color: var(--color-link-external);
|
||||
}
|
||||
|
||||
a.link-external:not(.link-affiliated):is(:hover, :focus-visible) {
|
||||
color: var(--color-link-external-hover);
|
||||
}
|
||||
|
||||
a.link-affiliated {
|
||||
color: var(--color-link-affiliated);
|
||||
}
|
||||
|
||||
a.link-affiliated:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-affiliated-hover);
|
||||
}
|
||||
|
||||
img,
|
||||
video,
|
||||
audio,
|
||||
svg {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
figure img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
time,
|
||||
sub,
|
||||
small {
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 1px solid var(--color-border);
|
||||
margin-top: var(--space-5);
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 1.03rem;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
border: 1px solid var(--color-border);
|
||||
padding: var(--space-2);
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
thead th {
|
||||
color: var(--color-heading);
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
}
|
||||
|
||||
dt {
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
dd {
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
details > summary {
|
||||
cursor: pointer;
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
/* Habillage commun des boutons contextuels (Sommaire, liens d'en-tête, oeuvres). */
|
||||
.ui-button {
|
||||
list-style: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: var(--space-2);
|
||||
min-height: 2.35rem;
|
||||
padding: 0.45rem 0.85rem;
|
||||
border: 1px solid var(--color-border-strong);
|
||||
background: linear-gradient(180deg, rgba(118, 167, 215, 0.22) 0%, rgba(17, 27, 42, 0.9) 100%);
|
||||
color: var(--color-heading);
|
||||
text-decoration: none;
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.82rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
line-height: 1.2;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.ui-button:is(:hover, :focus-visible) {
|
||||
border-color: color-mix(in srgb, var(--color-accent-1) 62%, var(--color-border-strong));
|
||||
background: linear-gradient(180deg, rgba(118, 167, 215, 0.32) 0%, rgba(17, 27, 42, 0.96) 100%);
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.ui-button:visited,
|
||||
a.ui-button.link-external:not(.link-affiliated),
|
||||
a.ui-button.link-affiliated {
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
.ui-button--vertical {
|
||||
width: 2.25rem;
|
||||
min-height: 7.2rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-button--vertical > span {
|
||||
display: inline-block;
|
||||
transform: rotate(90deg);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
main > section,
|
||||
main > aside,
|
||||
main > article {
|
||||
border-top: var(--border-width-regular) solid var(--color-border);
|
||||
padding-top: var(--space-4);
|
||||
}
|
||||
|
||||
main > section:nth-of-type(3n+1) {
|
||||
border-top-color: var(--color-section-divider-1);
|
||||
}
|
||||
|
||||
main > article {
|
||||
border-top-color: var(--color-accent-1);
|
||||
}
|
||||
|
||||
main > section:nth-of-type(3n+2) {
|
||||
border-top-color: var(--color-section-divider-2);
|
||||
}
|
||||
|
||||
main > section:nth-of-type(3n),
|
||||
main > aside:last-child {
|
||||
border-top-color: var(--color-section-divider-3);
|
||||
}
|
||||
1029
themes/2026/assets/css/content.css
Normal file
1029
themes/2026/assets/css/content.css
Normal file
File diff suppressed because it is too large
Load Diff
161
themes/2026/assets/css/footer.css
Normal file
161
themes/2026/assets/css/footer.css
Normal file
@@ -0,0 +1,161 @@
|
||||
body > footer {
|
||||
--color-footer-text: #c6d2e0;
|
||||
--color-footer-muted: #95a4b8;
|
||||
--color-footer-soft: #8796aa;
|
||||
display: grid;
|
||||
gap: var(--space-2);
|
||||
border-top: 0;
|
||||
padding: var(--space-3) var(--space-3) var(--space-4);
|
||||
background: var(--color-footer-background);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body > footer > * {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
body > footer h2 {
|
||||
margin-top: 0;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
font-size: 0.82rem;
|
||||
color: var(--color-footer-soft);
|
||||
}
|
||||
|
||||
body > footer > nav {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
body > footer > nav > ul {
|
||||
list-style: none;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0.35rem;
|
||||
}
|
||||
|
||||
body > footer > nav > ul > li {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: baseline;
|
||||
justify-content: center;
|
||||
gap: 0.15rem 0.65rem;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
body > footer > nav h2 a,
|
||||
body > footer > nav h2 span {
|
||||
text-decoration: none;
|
||||
color: var(--color-footer-muted);
|
||||
font-size: 0.78rem;
|
||||
}
|
||||
|
||||
body > footer > nav ul ul {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
row-gap: 0.15rem;
|
||||
column-gap: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
body > footer > nav ul ul a,
|
||||
body > footer > nav ul ul span {
|
||||
color: var(--color-footer-muted);
|
||||
text-decoration: none;
|
||||
font-size: 0.84rem;
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
body > footer > nav ul ul > li {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
body > footer > nav ul ul a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
body > footer > nav ul ul > li + li::before {
|
||||
content: "•";
|
||||
margin-inline: 0.45rem;
|
||||
color: var(--color-border-strong);
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) > dl {
|
||||
margin-top: 0.2rem;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) > dl > div {
|
||||
margin-top: 0;
|
||||
border-left: 0;
|
||||
padding-left: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) dt {
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
font-size: 0.72rem;
|
||||
color: var(--color-footer-soft);
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) dd {
|
||||
margin-top: 0.2rem;
|
||||
color: var(--color-footer-text);
|
||||
font-size: 0.88rem;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) dd > a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) dd > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) dd > time {
|
||||
display: block;
|
||||
margin-top: 0.2rem;
|
||||
color: var(--color-footer-soft);
|
||||
font-size: 0.72rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
body > footer > p {
|
||||
margin-top: var(--space-1);
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-top: var(--space-2);
|
||||
color: var(--color-footer-soft);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
body > footer > p > span {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > footer > p > span + span {
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
body > footer > p a {
|
||||
color: var(--color-footer-text);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > footer > p a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration: underline;
|
||||
}
|
||||
218
themes/2026/assets/css/header.css
Normal file
218
themes/2026/assets/css/header.css
Normal file
@@ -0,0 +1,218 @@
|
||||
body > header {
|
||||
position: relative;
|
||||
padding-bottom: var(--space-5);
|
||||
}
|
||||
|
||||
body > header:has(> h1) {
|
||||
display: grid;
|
||||
gap: var(--space-3);
|
||||
padding-bottom: var(--space-6);
|
||||
}
|
||||
|
||||
body > header:has(> h1)::before {
|
||||
content: "";
|
||||
width: min(18rem, 40vw);
|
||||
height: 0.55rem;
|
||||
background:
|
||||
linear-gradient(90deg, var(--color-accent-1) 0%, var(--color-accent-2) 50%, var(--color-accent-3) 100%);
|
||||
}
|
||||
|
||||
body > header > section:first-of-type {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
}
|
||||
|
||||
body > header > section:first-of-type > a {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
text-decoration: none;
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
body > header > section:first-of-type > a strong {
|
||||
font-family: var(--font-heading);
|
||||
font-size: clamp(1.6rem, 3vw, 2.3rem);
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
}
|
||||
|
||||
body > header > section:first-of-type > a img {
|
||||
width: 3.5rem;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
body > header > section.site-stats {
|
||||
margin-top: var(--space-5);
|
||||
}
|
||||
|
||||
body > header > section.site-stats > h2 {
|
||||
font-size: 1.02rem;
|
||||
letter-spacing: 0.11em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
body > header > section.site-stats > ul {
|
||||
list-style: none;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: var(--space-4);
|
||||
}
|
||||
|
||||
body > header > section.site-stats li {
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-top: var(--space-2);
|
||||
}
|
||||
|
||||
body > header > section.site-stats span {
|
||||
display: block;
|
||||
font-size: 0.88rem;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
body > header > section.site-stats strong {
|
||||
display: block;
|
||||
margin-top: var(--space-1);
|
||||
font-size: 1.38rem;
|
||||
color: var(--color-heading);
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > header .breadcrumbs {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.breadcrumbs > ol {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.breadcrumbs li {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
color: var(--color-text-muted);
|
||||
font-size: 0.9rem;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.breadcrumbs li::after {
|
||||
content: ">";
|
||||
color: var(--color-border-strong);
|
||||
}
|
||||
|
||||
.breadcrumbs li:last-child::after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
body > header > p {
|
||||
margin-top: var(--space-2);
|
||||
color: var(--color-text-muted);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-2);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
body > header:has(> h1) > h1 {
|
||||
max-width: 18ch;
|
||||
margin-top: 0;
|
||||
font-size: clamp(2rem, 5.4vw, 4.6rem);
|
||||
line-height: 0.95;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
body > header:has(> h1) > p:has(time) {
|
||||
margin-top: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-2);
|
||||
font-size: 0.88rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.09em;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
body > header:has(> h1) > p:not(:has(time)) {
|
||||
margin-top: var(--space-1);
|
||||
max-width: 64ch;
|
||||
font-size: 1.14rem;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.page-links > ul {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.page-links a {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
border: 1px solid var(--color-border);
|
||||
padding: 0.35rem 0.65rem;
|
||||
color: var(--color-text);
|
||||
font-size: 0.94rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.page-links a:hover {
|
||||
color: var(--color-heading);
|
||||
border-color: var(--color-accent-1);
|
||||
}
|
||||
|
||||
.page-links a.ui-button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 2.35rem;
|
||||
padding: 0.45rem 0.85rem;
|
||||
border: 1px solid var(--color-border-strong);
|
||||
color: var(--color-heading);
|
||||
font-family: var(--font-heading);
|
||||
font-size: 0.82rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.page-links a.ui-button:is(:hover, :focus-visible) {
|
||||
border-color: color-mix(in srgb, var(--color-accent-1) 62%, var(--color-border-strong));
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
body:has(> main.listing-page) > header {
|
||||
gap: var(--space-2);
|
||||
padding-bottom: var(--space-4);
|
||||
}
|
||||
|
||||
body:has(> main.listing-page) > header:has(> h1)::before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
body:has(> main:not(.listing-page)) > header:has(> h1)::before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
body:has(> main.listing-page) > header:has(> h1) > h1 {
|
||||
max-width: 100%;
|
||||
font-size: clamp(1.75rem, 3.1vw, 2.8rem);
|
||||
text-transform: none;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
body:has(> main.listing-page) > header .breadcrumbs li {
|
||||
font-size: 0.84rem;
|
||||
letter-spacing: 0.03em;
|
||||
}
|
||||
948
themes/2026/assets/css/home.css
Normal file
948
themes/2026/assets/css/home.css
Normal file
@@ -0,0 +1,948 @@
|
||||
body > main.home-main > section.home-critiques-category {
|
||||
border-top-color: var(--color-border);
|
||||
}
|
||||
|
||||
body > main > section > header > h2 > a,
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > header > h2 > a,
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > h3 > a {
|
||||
color: var(--color-heading);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main > section > header > h2 > a:is(:hover, :focus-visible),
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > header > h2 > a:is(:hover, :focus-visible),
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > h3 > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
|
||||
gap: var(--space-6);
|
||||
margin-top: var(--space-4);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight {
|
||||
align-items: start;
|
||||
overflow: hidden;
|
||||
overflow: clip;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article {
|
||||
display: none;
|
||||
grid-column: 1;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article:first-of-type {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:is(:hover, :focus-within)) > article {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(1):is(:hover, :focus-within)) > article:nth-of-type(1),
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(2):is(:hover, :focus-within)) > article:nth-of-type(2),
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(3):is(:hover, :focus-within)) > article:nth-of-type(3),
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(4):is(:hover, :focus-within)) > article:nth-of-type(4),
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(5):is(:hover, :focus-within)) > article:nth-of-type(5),
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(6):is(:hover, :focus-within)) > article:nth-of-type(6),
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(7):is(:hover, :focus-within)) > article:nth-of-type(7),
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(8):is(:hover, :focus-within)) > article:nth-of-type(8) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight.spotlight-aside-first {
|
||||
grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight.spotlight-aside-first > aside:first-child {
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight.spotlight-aside-first > article {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article {
|
||||
margin-top: 0;
|
||||
padding-top: 0;
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article > a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article figure {
|
||||
margin-top: 0;
|
||||
min-height: 21rem;
|
||||
border: 1px solid var(--color-border);
|
||||
background: linear-gradient(150deg, rgba(118, 167, 215, 0.18) 0%, rgba(93, 134, 173, 0.12) 50%, rgba(195, 208, 223, 0.1) 100%);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article figure img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article h3 {
|
||||
margin-top: var(--space-4);
|
||||
font-size: clamp(1.65rem, 3.2vw, 3rem);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.01em;
|
||||
line-height: 1.05;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article > p:nth-of-type(1) {
|
||||
font-size: 1.14rem;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article > p:nth-of-type(2) {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-2);
|
||||
font-size: 0.86rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside {
|
||||
margin-top: 0;
|
||||
border-left: 1px solid var(--color-border-strong);
|
||||
padding-left: var(--space-6);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > h3 {
|
||||
margin-top: 0;
|
||||
font-size: 0.96rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.13em;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > h3 + ol {
|
||||
margin-top: var(--space-3);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol {
|
||||
list-style: none;
|
||||
margin-top: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-4);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li {
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-top: var(--space-2);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li {
|
||||
position: relative;
|
||||
padding-left: var(--space-3);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol {
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset-block: 0.05rem 0.05rem;
|
||||
inset-inline-start: 0;
|
||||
width: var(--border-width-regular);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li:first-child::before,
|
||||
body > main > section > div.spotlight > aside > ol > li:is(:hover, :focus-within)::before {
|
||||
background: var(--color-accent-1);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:not(:first-child):is(:hover, :focus-within)) > aside > ol > li:first-child::before {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li > a {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-3);
|
||||
padding-block: var(--space-2);
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li > a::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset-block: -100vh;
|
||||
inset-inline-start: -62rem;
|
||||
inset-inline-end: 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight.spotlight-aside-first > aside > ol > li > a::before {
|
||||
inset-inline-start: 100%;
|
||||
inset-inline-end: -62rem;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li:is(:hover, :focus-within) > a::before {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li > a > span:first-child {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li > a > span:last-child {
|
||||
font-size: 0.86rem;
|
||||
color: var(--color-text-muted);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li:first-child {
|
||||
border-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li > a,
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > a {
|
||||
text-decoration: none;
|
||||
color: var(--color-heading);
|
||||
font-family: var(--font-heading);
|
||||
line-height: 1.15;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li > a {
|
||||
font-size: 1.36rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article > a > h3 {
|
||||
transition: color 0.16s ease;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article:is(:hover, :focus-within) > a > h3 {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > a:is(:hover, :focus-visible) > h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header > h3 > a:is(:hover, :focus-visible),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article:has(> header > a:is(:hover, :focus-visible)) > header > h3 > a {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article:is(:hover, :focus-within) > a > h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > a:is(:hover, :focus-visible) > h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header > h3 > a:is(:hover, :focus-visible),
|
||||
body > main > section > div.spotlight > aside > ol > li > a:is(:hover, :focus-visible),
|
||||
body > main.home-main > section.home-rubrics > div > article > h3 > a:is(:hover, :focus-visible),
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > a:is(:hover, :focus-visible),
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > h3 > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(1):is(:hover, :focus-within)) > article:nth-of-type(1) > a > h3,
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(2):is(:hover, :focus-within)) > article:nth-of-type(2) > a > h3,
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(3):is(:hover, :focus-within)) > article:nth-of-type(3) > a > h3,
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(4):is(:hover, :focus-within)) > article:nth-of-type(4) > a > h3,
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(5):is(:hover, :focus-within)) > article:nth-of-type(5) > a > h3,
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(6):is(:hover, :focus-within)) > article:nth-of-type(6) > a > h3,
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(7):is(:hover, :focus-within)) > article:nth-of-type(7) > a > h3,
|
||||
body > main > section > div.spotlight:has(> aside > ol > li:nth-child(8):is(:hover, :focus-within)) > article:nth-of-type(8) > a > h3 {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li > p {
|
||||
margin-top: var(--space-1);
|
||||
font-size: 0.86rem;
|
||||
color: var(--color-text-muted);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside:first-child {
|
||||
border-left: 0;
|
||||
border-right: 1px solid var(--color-border-strong);
|
||||
padding-left: 0;
|
||||
padding-right: var(--space-4);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(18rem, 22rem));
|
||||
justify-content: center;
|
||||
gap: var(--space-5);
|
||||
margin-top: var(--space-3);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > header > p {
|
||||
margin-top: var(--space-2);
|
||||
width: 100%;
|
||||
border-left: var(--border-width-regular) solid var(--color-accent-2);
|
||||
padding: 0.62rem 0.9rem;
|
||||
background: linear-gradient(90deg, rgba(93, 134, 173, 0.16) 0%, rgba(93, 134, 173, 0.04) 100%);
|
||||
color: var(--color-heading);
|
||||
font-size: clamp(1.08rem, 0.98rem + 0.45vw, 1.28rem);
|
||||
font-weight: 400;
|
||||
line-height: 1.3;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section {
|
||||
margin-top: 0;
|
||||
width: 100%;
|
||||
max-width: 22rem;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 0;
|
||||
border-top: var(--border-width-regular) solid var(--color-border-strong);
|
||||
padding-top: var(--space-3);
|
||||
background: var(--color-surface-soft);
|
||||
padding-inline: var(--space-3);
|
||||
padding-bottom: var(--space-3);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section:nth-child(2n+1) > article {
|
||||
border-top-color: var(--color-accent-2);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section:nth-child(2n) > article {
|
||||
border-top-color: var(--color-accent-3);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section figure {
|
||||
margin-top: 0;
|
||||
width: min(13rem, 100%);
|
||||
align-self: center;
|
||||
aspect-ratio: 2 / 3;
|
||||
border: 1px solid var(--color-border);
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section figure img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section h2 {
|
||||
font-size: clamp(1.12rem, 1.8vw, 1.38rem);
|
||||
margin-top: var(--space-3);
|
||||
line-height: 1.2;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section p {
|
||||
margin-top: 0;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section p:last-child {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: var(--space-2);
|
||||
margin-top: var(--space-3);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section p:last-child > a.ui-button {
|
||||
width: 100%;
|
||||
min-height: 2.35rem;
|
||||
border-color: color-mix(in srgb, var(--color-link-external) 58%, var(--color-border-strong));
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
color-mix(in srgb, var(--color-link-external) 38%, var(--color-background-alt)) 0%,
|
||||
color-mix(in srgb, var(--color-link-external) 12%, var(--color-background-alt)) 100%
|
||||
);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section p:last-child > a.ui-button:is(:hover, :focus-visible) {
|
||||
border-color: color-mix(in srgb, var(--color-link-external-hover) 70%, var(--color-border-strong));
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
color-mix(in srgb, var(--color-link-external-hover) 44%, var(--color-background-alt)) 0%,
|
||||
color-mix(in srgb, var(--color-link-external) 18%, var(--color-background-alt)) 100%
|
||||
);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol {
|
||||
grid-template-columns: repeat(12, minmax(0, 1fr));
|
||||
grid-auto-flow: row dense;
|
||||
gap: var(--space-6);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list {
|
||||
--articles-deep-flow-gap: 0.78rem;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list article {
|
||||
border-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header > a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header > p {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
font-size: 0.84rem;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header > p > a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header > p > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header > h3 {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article h3 {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > header:has(> p) > h3 {
|
||||
margin-top: calc(var(--articles-deep-flow-gap) * 0.4);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > p:nth-of-type(1) {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
font-size: 1.14rem;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > p:last-child {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
font-size: 0.86rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > p:last-child > a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > p:last-child > a:is(:hover, :focus-visible) {
|
||||
color: inherit;
|
||||
filter: brightness(1.28);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li {
|
||||
grid-column: span 3;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+1) {
|
||||
grid-column: 1 / span 3;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+2),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+4) {
|
||||
grid-column: 4 / span 3;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+3),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+5) {
|
||||
grid-column: 7 / span 6;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+3) {
|
||||
grid-column: 1 / span 3;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+5) {
|
||||
grid-row: span 2;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+6) {
|
||||
grid-column: 1 / span 6;
|
||||
grid-row: span 2;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+7),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+9) {
|
||||
grid-column: 7 / span 3;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+8),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+10) {
|
||||
grid-column: 10 / span 3;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+5) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+6) article figure {
|
||||
min-height: 19rem;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+1) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+2) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+3) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+4) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+7) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+8) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+9) article figure,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+10) article figure {
|
||||
min-height: 9rem;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+5) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+6) article h3 {
|
||||
font-size: clamp(1.46rem, 2.45vw, 2.05rem);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+1) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+2) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+3) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+4) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+7) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+8) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+9) article h3,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+10) article h3 {
|
||||
font-size: 1.36rem;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+1) article > p:last-child,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+2) article > p:last-child,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+3) article > p:last-child,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+4) article > p:last-child,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+7) article > p:last-child,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+8) article > p:last-child,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+9) article > p:last-child,
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+10) article > p:last-child {
|
||||
margin-top: var(--space-1);
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+1) article > p:nth-of-type(1),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+2) article > p:nth-of-type(1),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+3) article > p:nth-of-type(1),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+4) article > p:nth-of-type(1),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+7) article > p:nth-of-type(1),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+8) article > p:nth-of-type(1),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+9) article > p:nth-of-type(1),
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li:nth-child(10n+10) article > p:nth-of-type(1) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: var(--space-4);
|
||||
margin-top: var(--space-3);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article {
|
||||
margin-top: 0;
|
||||
padding-top: var(--space-3);
|
||||
border-top: var(--border-width-regular) solid var(--color-border-strong);
|
||||
background: var(--color-surface-soft);
|
||||
padding-inline: var(--space-3);
|
||||
padding-bottom: var(--space-3);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article:nth-child(3n+1) {
|
||||
border-top-color: var(--color-accent-1);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article:nth-child(3n+2) {
|
||||
border-top-color: var(--color-accent-2);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article:nth-child(3n+3) {
|
||||
border-top-color: var(--color-accent-3);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > header {
|
||||
margin-top: 0;
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > header > h3 {
|
||||
margin-top: 0;
|
||||
min-width: 0;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > header > h3 > a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
font-size: 1.13rem;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > header > h3 > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > header > p {
|
||||
margin-top: 0;
|
||||
flex: 0 0 auto;
|
||||
font-size: 0.78rem;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul {
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr auto;
|
||||
gap: var(--space-2);
|
||||
align-items: baseline;
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-top: var(--space-2);
|
||||
margin-top: var(--space-2);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > a {
|
||||
font-size: 1.08rem;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > p {
|
||||
grid-column: 1 / -1;
|
||||
margin-top: 0;
|
||||
font-size: 0.82rem;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > p > a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > p > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li > time {
|
||||
font-size: 0.86rem;
|
||||
white-space: nowrap;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch {
|
||||
border-top-color: var(--color-accent-2);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > header {
|
||||
margin-top: 0;
|
||||
margin-bottom: var(--space-3);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: var(--space-3);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article {
|
||||
margin-top: 0;
|
||||
border: 1px solid var(--color-border);
|
||||
padding: var(--space-3);
|
||||
background:
|
||||
linear-gradient(160deg, rgba(118, 167, 215, 0.1) 0%, rgba(118, 167, 215, 0.02) 28%, rgba(93, 134, 173, 0.1) 100%);
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
gap: var(--space-3);
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > a > figure {
|
||||
margin-top: 0;
|
||||
min-height: 0;
|
||||
border: 1px solid var(--color-border);
|
||||
background: rgba(0, 0, 0, 0.22);
|
||||
overflow: hidden;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > a > figure img {
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div {
|
||||
display: grid;
|
||||
align-content: start;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > h3 {
|
||||
margin-top: 0;
|
||||
font-size: 1.08rem;
|
||||
line-height: 1.2;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > h3 > a {
|
||||
text-decoration: none;
|
||||
color: var(--color-heading);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > h3 > a:is(:hover, :focus-visible),
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article:has(> a:is(:hover, :focus-visible)) > div > h3 > a {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > p {
|
||||
margin-top: 0;
|
||||
font-size: 0.93rem;
|
||||
line-height: 1.45;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p {
|
||||
margin-top: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
align-items: center;
|
||||
font-size: 0.86rem;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p + p {
|
||||
margin-top: 0.2rem;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p > a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p > strong {
|
||||
border: 1px solid var(--color-border);
|
||||
padding: 0.2rem 0.48rem;
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 0.06em;
|
||||
color: var(--color-heading);
|
||||
background: rgba(29, 45, 64, 0.32);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p > strong[data-state="ok"] {
|
||||
border-color: rgba(118, 167, 215, 0.6);
|
||||
color: #b8d8f8;
|
||||
background: rgba(48, 84, 122, 0.28);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p > strong[data-state="warn"] {
|
||||
border-color: rgba(212, 172, 102, 0.7);
|
||||
color: #f2d59e;
|
||||
background: rgba(110, 78, 24, 0.32);
|
||||
box-shadow: inset 0 0 0 1px rgba(246, 214, 155, 0.12);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p > strong[data-state="dead"] {
|
||||
border-color: rgba(219, 126, 147, 0.72);
|
||||
color: #ffd4df;
|
||||
background: rgba(124, 39, 62, 0.36);
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 212, 223, 0.14);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > div > footer > p > strong:is([data-state="warn"], [data-state="dead"]) {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div {
|
||||
margin-top: var(--space-3);
|
||||
display: grid;
|
||||
gap: var(--space-3);
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article {
|
||||
margin-top: 0;
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-top: var(--space-2);
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > h3 {
|
||||
margin-top: 0;
|
||||
font-size: clamp(1.04rem, 1.35vw, 1.18rem);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > h3 > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > ul {
|
||||
list-style: none;
|
||||
margin-top: var(--space-2);
|
||||
margin-inline: 0;
|
||||
padding-left: 0;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
min-width: 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
gap: var(--space-1);
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
overscroll-behavior-x: contain;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
padding-bottom: 0.2rem;
|
||||
scrollbar-width: thin;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > ul > li {
|
||||
flex: 0 0 auto;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > ul > li > a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > ul > li > a > figure {
|
||||
margin-top: 0;
|
||||
width: max-content;
|
||||
border: 1px solid var(--color-border);
|
||||
background: linear-gradient(145deg, rgba(118, 167, 215, 0.12) 0%, rgba(93, 134, 173, 0.09) 100%);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > ul > li > a > figure img {
|
||||
width: auto;
|
||||
height: 128px;
|
||||
max-width: none;
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > ul > li > a:is(:hover, :focus-visible) > figure {
|
||||
border-color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > p {
|
||||
margin-top: var(--space-1);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-2);
|
||||
font-size: 0.8rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > p > a {
|
||||
text-transform: none;
|
||||
letter-spacing: 0;
|
||||
color: var(--color-text);
|
||||
text-decoration: none;
|
||||
border: 1px solid var(--color-border);
|
||||
padding: 0.1rem 0.4rem;
|
||||
font-size: 0.84rem;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-collections.collections-section > div > article > p > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
border-color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
/* Le carrousel des collections ne doit pas élargir le viewport mobile. */
|
||||
html:has(body > main.home-main > section.home-collections.collections-section),
|
||||
body:has(> main.home-main > section.home-collections.collections-section) {
|
||||
overflow-x: clip;
|
||||
}
|
||||
10
themes/2026/assets/css/index.css
Normal file
10
themes/2026/assets/css/index.css
Normal file
@@ -0,0 +1,10 @@
|
||||
@import "variables.css";
|
||||
@import "reset.css";
|
||||
@import "base.css";
|
||||
@import "header.css";
|
||||
@import "article-header.css";
|
||||
@import "content.css";
|
||||
@import "list.css";
|
||||
@import "home.css";
|
||||
@import "footer.css";
|
||||
@import "responsive.css";
|
||||
387
themes/2026/assets/css/list.css
Normal file
387
themes/2026/assets/css/list.css
Normal file
@@ -0,0 +1,387 @@
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol {
|
||||
grid-template-columns: repeat(12, minmax(0, 1fr));
|
||||
grid-auto-flow: row dense;
|
||||
gap: var(--space-6);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list {
|
||||
--articles-deep-flow-gap: 0.78rem;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list article {
|
||||
border-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > header > a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > header > p {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
font-size: 0.84rem;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > header > p > a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > header > p > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > header > h3 {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > header:has(> p) > h3 {
|
||||
margin-top: calc(var(--articles-deep-flow-gap) * 0.4);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > p:nth-of-type(1) {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
font-size: 1.14rem;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > p:last-child {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
font-size: 0.86rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > p:last-child > a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > p:last-child > a:is(:hover, :focus-visible) {
|
||||
color: inherit;
|
||||
filter: brightness(1.28);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta {
|
||||
margin-top: var(--articles-deep-flow-gap);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p {
|
||||
margin-top: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
align-items: center;
|
||||
font-size: 0.86rem;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-text-muted);
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p + p {
|
||||
margin-top: 0.2rem;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p > a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p > strong {
|
||||
border: 1px solid var(--color-border);
|
||||
padding: 0.2rem 0.48rem;
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 0.06em;
|
||||
color: var(--color-heading);
|
||||
background: rgba(29, 45, 64, 0.32);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p > strong[data-state="ok"] {
|
||||
border-color: rgba(118, 167, 215, 0.6);
|
||||
color: #b8d8f8;
|
||||
background: rgba(48, 84, 122, 0.28);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p > strong[data-state="warn"] {
|
||||
border-color: rgba(212, 172, 102, 0.7);
|
||||
color: #f2d59e;
|
||||
background: rgba(110, 78, 24, 0.32);
|
||||
box-shadow: inset 0 0 0 1px rgba(246, 214, 155, 0.12);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p > strong[data-state="dead"] {
|
||||
border-color: rgba(219, 126, 147, 0.72);
|
||||
color: #ffd4df;
|
||||
background: rgba(124, 39, 62, 0.36);
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 212, 223, 0.14);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li article > footer.external-link-meta > p > strong:is([data-state="warn"], [data-state="dead"]) {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li {
|
||||
grid-column: span 3;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+1) {
|
||||
grid-column: 1 / span 3;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+2),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+4) {
|
||||
grid-column: 4 / span 3;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+3),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+5) {
|
||||
grid-column: 7 / span 6;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+3) {
|
||||
grid-column: 1 / span 3;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+5) {
|
||||
grid-row: span 2;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+6) {
|
||||
grid-column: 1 / span 6;
|
||||
grid-row: span 2;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+7),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+9) {
|
||||
grid-column: 7 / span 3;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+8),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+10) {
|
||||
grid-column: 10 / span 3;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+5) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+6) article figure {
|
||||
min-height: 19rem;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+1) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+2) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+3) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+4) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+7) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+8) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+9) article figure,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+10) article figure {
|
||||
min-height: 9rem;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+5) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+6) article h3 {
|
||||
font-size: clamp(1.46rem, 2.45vw, 2.05rem);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+1) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+2) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+3) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+4) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+7) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+8) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+9) article h3,
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+10) article h3 {
|
||||
font-size: 1.36rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+1) article > p:nth-of-type(1),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+2) article > p:nth-of-type(1),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+3) article > p:nth-of-type(1),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+4) article > p:nth-of-type(1),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+7) article > p:nth-of-type(1),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+8) article > p:nth-of-type(1),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+9) article > p:nth-of-type(1),
|
||||
body > main.listing-page > section.listing-articles > nav.articles-list > ol > li:nth-child(10n+10) article > p:nth-of-type(1) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol {
|
||||
list-style: none;
|
||||
margin-top: var(--space-4);
|
||||
padding-left: 0;
|
||||
display: grid;
|
||||
gap: var(--space-4);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset-block: 0 0;
|
||||
inset-inline-start: 0.58rem;
|
||||
width: 1px;
|
||||
background: var(--color-border-strong);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li {
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
padding-inline-start: var(--space-5);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset-inline-start: 0.2rem;
|
||||
inset-block-start: 1.05rem;
|
||||
width: 0.72rem;
|
||||
height: 0.72rem;
|
||||
border: var(--border-width-regular) solid var(--color-accent-2);
|
||||
border-radius: 999px;
|
||||
background: var(--color-background-alt);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article {
|
||||
margin-top: 0;
|
||||
border: 1px solid var(--color-border);
|
||||
background: var(--color-surface-soft);
|
||||
padding: var(--space-3);
|
||||
display: grid;
|
||||
grid-template-columns: minmax(7.2rem, 9.5rem) minmax(0, 1fr);
|
||||
gap: var(--space-3);
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article:not(:has(> a)) {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > a {
|
||||
display: block;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > a > figure {
|
||||
margin-top: 0;
|
||||
min-height: 6.2rem;
|
||||
border: 1px solid var(--color-border);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > a > figure img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div {
|
||||
display: grid;
|
||||
gap: var(--space-2);
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header {
|
||||
margin-top: 0;
|
||||
display: grid;
|
||||
gap: var(--space-1);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header > p:first-of-type {
|
||||
margin-top: 0;
|
||||
font-size: 0.86rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header > p + p {
|
||||
margin-top: 0;
|
||||
font-size: 0.84rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header > p + p > a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header > p + p > a:is(:hover, :focus-visible) {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header > h3 {
|
||||
margin-top: 0;
|
||||
font-size: clamp(1.25rem, 1.8vw, 1.65rem);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header > h3 > a {
|
||||
color: var(--color-heading);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > header > h3 > a:is(:hover, :focus-visible),
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article:has(> a:is(:hover, :focus-visible)) > div > header > h3 > a {
|
||||
color: var(--color-link-hover);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > p {
|
||||
margin-top: 0;
|
||||
font-size: 1rem;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > footer {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > footer > p {
|
||||
margin-top: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
font-size: 0.86rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > footer > p > a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 0.15em;
|
||||
}
|
||||
|
||||
body > main.listing-page > section.listing-timeline > ol > li > article > div > footer > p > a:is(:hover, :focus-visible) {
|
||||
color: inherit;
|
||||
filter: brightness(1.28);
|
||||
}
|
||||
5
themes/2026/assets/css/reset.css
Normal file
5
themes/2026/assets/css/reset.css
Normal file
@@ -0,0 +1,5 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
247
themes/2026/assets/css/responsive.css
Normal file
247
themes/2026/assets/css/responsive.css
Normal file
@@ -0,0 +1,247 @@
|
||||
@media (max-width: 1100px) {
|
||||
body > header > section.site-stats > ul {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article,
|
||||
body > main > section > div.spotlight.spotlight-aside-first > article {
|
||||
grid-column: 1;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside,
|
||||
body > main > section > div.spotlight.spotlight-aside-first > aside:first-child {
|
||||
grid-column: 1;
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside {
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-top: var(--space-4);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: var(--space-3);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol {
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol > li,
|
||||
body > main > section > div.spotlight > aside > ol > li:first-child {
|
||||
border-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div {
|
||||
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section {
|
||||
max-width: 22rem;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li {
|
||||
grid-column: auto;
|
||||
grid-row: auto;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article figure {
|
||||
min-height: 12rem;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article > p:nth-of-type(1) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-spotlight > section.listing-articles > nav.articles-list > ol {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-spotlight > section.listing-articles > nav.articles-list > ol > li {
|
||||
grid-column: auto;
|
||||
grid-row: auto;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-spotlight > section.listing-articles > nav.articles-list > ol > li article figure {
|
||||
min-height: 12rem;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-spotlight > section.listing-articles > nav.articles-list > ol > li article > p:nth-of-type(1) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-timeline > section.listing-timeline > ol > li > article {
|
||||
grid-template-columns: minmax(6.4rem, 8rem) minmax(0, 1fr);
|
||||
}
|
||||
|
||||
body > main:has(> article:first-child):has(> aside) {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main:has(> article:first-child):has(> aside) > article:first-child {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
body > main:has(> article:first-child):has(> aside) > aside {
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-top: var(--space-4);
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) > dl {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
body {
|
||||
font-size: var(--font-size-body-mobile);
|
||||
padding: var(--space-3);
|
||||
}
|
||||
|
||||
body > main,
|
||||
body > footer {
|
||||
margin-bottom: var(--space-5);
|
||||
}
|
||||
|
||||
body > header > section.site-stats > ul {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > header:has(> h1) > h1 {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
main nav.articles-list > ol {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article figure {
|
||||
min-height: 14rem;
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > article h3 {
|
||||
font-size: clamp(1.4rem, 8vw, 2.1rem);
|
||||
}
|
||||
|
||||
body > main > section > div.spotlight > aside > ol {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-books > div > section figure {
|
||||
min-height: 0;
|
||||
width: min(11rem, 100%);
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main.home-main > section.home-rubrics > div > article > ul > li {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body:has(> main.home-main > section.home-spotlight > div.spotlight > article) > main.home-main > section.home-deep > nav.articles-list > ol > li article figure {
|
||||
min-height: 10rem;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-spotlight > section.listing-articles > nav.articles-list > ol {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-spotlight > section.listing-articles > nav.articles-list > ol > li article figure {
|
||||
min-height: 10rem;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-timeline > section.listing-timeline > ol::before {
|
||||
inset-inline-start: 0;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-timeline > section.listing-timeline > ol > li {
|
||||
padding-inline-start: var(--space-4);
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-timeline > section.listing-timeline > ol > li::before {
|
||||
inset-inline-start: -0.35rem;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-timeline > section.listing-timeline > ol > li > article {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main.listing-page.listing-mode-timeline > section.listing-timeline > ol > li > article > a > figure {
|
||||
min-height: 9rem;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > main.home-main:has(> section.home-spotlight > div.spotlight > article) > aside.home-watch > div > article > a > figure {
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
body > main:has(> article:first-child):has(> aside) > article:first-child {
|
||||
font-size: 1.14rem;
|
||||
line-height: 1.82;
|
||||
}
|
||||
|
||||
body > main:has(> article:first-child):has(> aside) > article:first-child > * {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
body > footer {
|
||||
padding-top: var(--space-3);
|
||||
padding-inline: var(--space-1);
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) > dl {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) > dl > div {
|
||||
border-left: 0;
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding-left: 0;
|
||||
padding-top: var(--space-1);
|
||||
}
|
||||
|
||||
body > footer > section:nth-of-type(1) > dl > div:first-child {
|
||||
border-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
}
|
||||
47
themes/2026/assets/css/variables.css
Normal file
47
themes/2026/assets/css/variables.css
Normal file
@@ -0,0 +1,47 @@
|
||||
:root {
|
||||
--color-background: #060c14;
|
||||
--color-background-alt: #111b2a;
|
||||
--color-background-deep: #040914;
|
||||
--color-footer-background: #02050d;
|
||||
--color-surface-soft: rgba(255, 255, 255, 0.025);
|
||||
--color-border: #273446;
|
||||
--color-border-strong: #3b536d;
|
||||
--color-text: #e7edf6;
|
||||
--color-text-muted: #a5b3c4;
|
||||
--color-heading: #f7fbff;
|
||||
--color-link: #ffd369;
|
||||
--color-link-hover: #fff1b8;
|
||||
--color-link-external: #6de0b8;
|
||||
--color-link-external-hover: #9ef7d6;
|
||||
--color-link-affiliated: #e792ff;
|
||||
--color-link-affiliated-hover: #f3b8ff;
|
||||
--color-accent-1: #76a7d7;
|
||||
--color-accent-2: #5d86ad;
|
||||
--color-accent-3: #c3d0df;
|
||||
--color-background-wash-light: #76a7d7;
|
||||
--color-background-wash-mid: #5d86ad;
|
||||
--color-background-wash-deep: #273446;
|
||||
--color-background-wash: var(--color-background-wash-mid);
|
||||
--color-section-divider-1: #e7b83f;
|
||||
--color-section-divider-2: #8f6ad8;
|
||||
--color-section-divider-3: #d97a3f;
|
||||
--color-strong-highlight: #8f3340;
|
||||
--border-width-regular: 2px;
|
||||
|
||||
--font-body: "Source Sans 3", "Noto Sans", "DejaVu Sans", sans-serif;
|
||||
--font-heading: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
|
||||
--font-size-root-min: 16px;
|
||||
--font-size-body: clamp(1.1875rem, 1.05rem + 0.55vw, 1.3125rem);
|
||||
--font-size-body-mobile: 1.1875rem;
|
||||
--font-size-reading: clamp(1.2rem, 1.08rem + 0.45vw, 1.34rem);
|
||||
|
||||
--space-1: 0.35rem;
|
||||
--space-2: 0.6rem;
|
||||
--space-3: 0.9rem;
|
||||
--space-4: 1.2rem;
|
||||
--space-5: 1.7rem;
|
||||
--space-6: 2.4rem;
|
||||
|
||||
--max-width: 92rem;
|
||||
--max-width-reading: 54rem;
|
||||
}
|
||||
Reference in New Issue
Block a user