index-soutien/assets/css/components/_text.scss

66 lines
1.3 KiB
SCSS
Raw Normal View History

2026-04-22 10:41:39 +02:00
[data-template='subscription-newsletter'],
[data-template='thanks'],
[data-template='support'],
[data-template='store'] {
.hero-heading p {
font-family: var(--title);
font-size: var(--fs-big);
font-weight: var(--fw-bold);
line-height: 1.1;
text-align: center;
margin: calc(var(--spacing) * 1) 0;
2026-03-04 13:39:20 +01:00
2026-04-22 10:41:39 +02:00
strong {
font-weight: var(--fw-bolf);
color: var(--color-accent);
2026-03-04 13:39:20 +01:00
}
2026-04-22 10:41:39 +02:00
.link-don {
display: block;
color: var(--color-accent);
text-decoration: none;
// &::after{
// content: ' ↗';
// font-size: 0.8em;
// }
&:hover {
text-decoration: underline 2px;
text-underline-offset: 4px;
}
2026-03-04 13:39:20 +01:00
}
2026-04-22 10:41:39 +02:00
}
2026-03-04 13:39:20 +01:00
2026-04-22 10:41:39 +02:00
.subheading {
font-size: var(--fs-medium);
font-weight: var(--fw-medium);
line-height: 1.1;
text-align: center;
margin: calc(var(--spacing) * 1) 0;
@media #{$small} {
text-align: center;
margin: var(--spacing) 0;
2026-03-04 13:39:20 +01:00
}
2026-04-22 10:41:39 +02:00
}
2026-03-04 13:39:20 +01:00
2026-04-22 10:41:39 +02:00
.text-details {
font-size: var(--fs-small);
margin-bottom: 0.5em;
color: var(--grey-400);
}
2026-03-04 13:39:20 +01:00
2026-04-22 10:41:39 +02:00
.section-heading {
font-size: var(--fs-normal);
font-weight: var(--fw-medium);
line-height: 1;
text-align: center;
margin-top: calc(var(--spacing) * 0.5);
margin-bottom: calc(var(--spacing) * 1);
}
2026-03-04 13:39:20 +01:00
2026-04-22 10:41:39 +02:00
ul,
ol {
margin-left: 3ch;
margin-bottom: 0.5em;
}
2026-03-04 13:39:20 +01:00
}