hugo-theme-almeida/assets/sass/components/_side_section.scss
2020-08-16 13:21:35 +01:00

38 lines
692 B
SCSS

.sideSection {
display: block;
margin-bottom: 3rem;
&__heading {
width:100%;
overflow: hidden;
text-align: center;
margin-bottom: 1rem;
}
&__title {
position: relative;
&::after,
&::before {
content: "";
position: absolute;
border-top: 1px solid $color-grey;
border-bottom: 1px solid $color-grey;
width: 10rem;
height: 4px;
margin-top: 1.1rem;
}
&::after{
margin-left: 1rem;
}
&::before{
margin-left: -11rem;
}
}
& li {
list-style: none;
}
}