Le framework HUGO utilisé pour créer son CV en 2 minutes
https://cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
731 B
40 lines
731 B
4 years ago
|
.sideSection {
|
||
|
display: block;
|
||
|
margin-bottom: 3rem;
|
||
|
@include avoid-break;
|
||
|
|
||
|
&__heading {
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
text-align: center;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
&__title {
|
||
|
position: relative;
|
||
|
|
||
|
&::after,
|
||
|
&::before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
border-top: 1px solid $color-secondary;
|
||
|
border-bottom: 1px solid $color-secondary;
|
||
|
width: 10rem;
|
||
|
height: 4px;
|
||
|
margin-top: 1.1rem;
|
||
|
}
|
||
|
|
||
|
&::after {
|
||
|
margin-left: 1rem;
|
||
|
}
|
||
|
|
||
|
&::before {
|
||
|
margin-left: -11rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
& li {
|
||
|
list-style: none;
|
||
|
}
|
||
|
}
|