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.
30 lines
623 B
30 lines
623 B
.section {
|
|
display: block;
|
|
margin-bottom: 2rem;
|
|
|
|
&__heading {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&__title {
|
|
position: relative;
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
border-top: 1px solid;
|
|
border-bottom: 1px solid;
|
|
border-color: $color-secondary;
|
|
width: 50rem;
|
|
height: 4px;
|
|
margin-left: 1.5rem;
|
|
margin-top: 1.5rem;
|
|
transition: all 0.5s ease-in-out;
|
|
}
|
|
|
|
&:hover::after {
|
|
border-color: $color-primary;
|
|
}
|
|
}
|
|
}
|
|
|