hugo-theme-almeida/assets/scss/components/_side_section.scss

41 lines
803 B
SCSS
Raw Normal View History

2020-08-16 13:21:35 +01:00
.sideSection {
display: block;
margin-bottom: 3rem;
2020-08-17 08:39:41 +01:00
@include avoid-break;
2020-08-16 13:21:35 +01:00
&__heading {
2020-08-29 12:16:29 +01:00
width: 100%;
2020-08-16 13:21:35 +01:00
overflow: hidden;
text-align: center;
margin-bottom: 1rem;
color: $color-right-col-heading-text;
2020-08-16 13:21:35 +01:00
}
&__title {
position: relative;
&::after,
&::before {
2020-08-29 12:16:29 +01:00
content: '';
2020-08-16 13:21:35 +01:00
position: absolute;
border-top: 1px solid $color-right-col-heading-text;
border-bottom: 1px solid $color-right-col-heading-text;
2020-08-16 13:21:35 +01:00
width: 10rem;
height: 4px;
margin-top: 1.1rem;
}
2020-08-29 12:16:29 +01:00
&::after {
2020-08-16 13:21:35 +01:00
margin-left: 1rem;
}
2020-08-29 12:16:29 +01:00
&::before {
2020-08-16 13:21:35 +01:00
margin-left: -11rem;
}
}
& li {
list-style: none;
}
}