le-courage-du-reel/assets/css/src/_section_5-handles.scss

64 lines
1.3 KiB
SCSS
Raw Normal View History

2026-02-23 16:31:30 +01:00
section#handles {
margin: 5rem var(--padding-body);
display: flex;
flex-direction: column;
align-items: center;
header {
width: 100%;
display: flex;
justify-content: space-between;
align-items: end;
.title-wrapper {
.index {
font-size: var(--font-size-s);
text-transform: uppercase;
font-weight: 500;
margin-bottom: 0.75rem;
}
.title {
font-family: var(--font-narrow);
color: var(--color-blue);
font-size: 4.0625rem;
text-transform: uppercase;
}
}
.subtitle {
font-weight: 500;
margin-right: 7vw;
}
}
.path {
margin-top: 7.5rem;
width: 42rem;
.step {
box-sizing: border-box;
width: min(100%, 20rem);
padding: 1rem 2rem;
border-radius: var(--radius-section);
border: 1px solid var(--color-blue);
color: var(--color-blue);
font-size: var(--font-size-s);
font-weight: 500;
h4 {
text-transform: uppercase;
margin-bottom: 0.7rem;
}
}
.step:hover {
background-color: var(--color-blue);
color: #fff;
}
.step:nth-child(even) {
margin-left: 22rem;
}
.step:not(:last-child) {
margin-bottom: 2rem;
}
}
}