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

69 lines
1.6 KiB
SCSS
Raw Normal View History

2026-01-06 11:19:25 +01:00
[data-template="subscription-newsletter"],
[data-template="thanks"],
[data-template="support"],
[data-template="store"]{
2025-11-04 08:33:39 +01:00
.p__baseline-big{
2026-01-06 11:19:25 +01:00
font-family: var(--title);
2025-11-04 08:33:39 +01:00
font-size: var(--fs-big);
2026-01-06 11:19:25 +01:00
font-weight: var(--fw-bold);
line-height: 1.1;
2025-11-04 08:33:39 +01:00
text-align: center;
2026-01-06 11:19:25 +01:00
margin: calc(var(--spacing)*1) 0;
strong{
font-weight: var(--fw-bolf);
color: var(--color-accent);
}
.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;
}
}
2025-11-04 08:33:39 +01:00
}
.p__baseline{
font-size: var(--fs-medium);
font-weight: var(--fw-medium);
2026-01-06 11:19:25 +01:00
line-height: 1.1;
2025-11-04 08:33:39 +01:00
text-align: center;
2026-01-06 11:19:25 +01:00
margin: calc(var(--spacing)*1) 0;
@media #{$small}{
text-align: center;
margin: var(--spacing) 0;
}
2025-11-04 08:33:39 +01:00
}
.p__details{
font-size: var(--fs-small);
margin-bottom: 0.5em;
color: var(--grey-400);
}
.section__heading{
2026-01-06 11:19:25 +01:00
font-size: var(--fs-normal);
2025-11-04 08:33:39 +01:00
font-weight: var(--fw-medium);
line-height: 1;
text-align: center;
2026-01-06 11:19:25 +01:00
margin-top: calc(var(--spacing)*0.5);
margin-bottom: calc(var(--spacing)*1);
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
ul, ol{
margin-left: 3ch;
margin-bottom: 0.5em;
2025-11-04 08:33:39 +01:00
}
2026-01-06 11:19:25 +01:00
}