draft desktop version finish

This commit is contained in:
isUnknown 2026-02-23 16:31:30 +01:00
parent 4b99d290f3
commit ac3542099a
30 changed files with 1682 additions and 149 deletions

View file

@ -0,0 +1,63 @@
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;
}
}
}