Files
copenlight/styles/_section.scss
Ivan Carlos de Almeida 6fa41a771d
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s
first load
2025-12-16 04:40:00 -03:00

55 lines
845 B
SCSS

/***** Section pages *****/
.section {
&-container {
display: flex;
justify-content: flex-end;
}
&-content {
@include desktop {
flex: 0 0 80%;
}
flex: 1;
max-width: 100%
}
&-subscribe button {
@extend .button;
&[data-selected="true"] {
@extend .button-primary;
}
}
}
.section-list {
margin: 40px 0;
}
.section-list-item {
border-bottom: 1px solid $low-contrast-border-color;
font-size: $font-size-bigger;
padding: 15px 0;
&:first-child {
border-top: 1px solid $low-contrast-border-color;
}
a {
align-items: center;
color: $text_color;
display: flex;
justify-content: space-between;
}
}
.see-all-sections-trigger {
cursor: pointer;
display: block;
padding: 15px;
text-align: center;
&[aria-hidden="true"] {
display: none;
}
}