2025-05-30 17:15:12 +02:00
|
|
|
@use "../abstracts" as *;
|
|
|
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
// CV STYLE
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.cv {
|
|
|
|
|
2025-06-03 20:04:04 +02:00
|
|
|
.cv__title {
|
|
|
|
@include visually-hidden;
|
|
|
|
}
|
|
|
|
|
2025-06-03 19:36:13 +02:00
|
|
|
.cv__content {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
column-gap: 0.5rem;
|
|
|
|
row-gap: 1rem;
|
|
|
|
max-width: $content-width-s;
|
|
|
|
|
2025-06-04 19:07:20 +02:00
|
|
|
> h2 {
|
2025-06-03 19:36:13 +02:00
|
|
|
grid-column: 1 / span 2;
|
2025-06-04 19:07:20 +02:00
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 700;
|
2025-06-03 19:36:13 +02:00
|
|
|
}
|
|
|
|
|
2025-06-04 19:07:20 +02:00
|
|
|
> h3 {
|
2025-06-03 19:36:13 +02:00
|
|
|
grid-column: 1 / span 1;
|
2025-06-04 19:07:20 +02:00
|
|
|
font-weight: 700;
|
2025-06-03 19:36:13 +02:00
|
|
|
}
|
|
|
|
|
2025-06-04 19:07:20 +02:00
|
|
|
> p {
|
2025-06-03 19:36:13 +02:00
|
|
|
grid-column: 1 / span 2;
|
|
|
|
}
|
|
|
|
|
2025-06-04 19:07:20 +02:00
|
|
|
> ul {
|
2025-06-03 19:36:13 +02:00
|
|
|
grid-column: 2 / span 1;
|
2025-06-04 19:07:20 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.25rem;
|
2025-06-03 19:36:13 +02:00
|
|
|
}
|
|
|
|
}
|
2025-05-30 17:15:12 +02:00
|
|
|
}
|