23 lines
424 B
CSS
23 lines
424 B
CSS
.container {
|
|
display: grid;
|
|
gap: var(--Spacing-x7);
|
|
}
|
|
|
|
.card {
|
|
align-items: center;
|
|
background-color: var(--Scandic-Brand-Burgundy);
|
|
border-radius: var(--Corner-radius-Small);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
justify-content: center;
|
|
padding: var(--Spacing-x3) var(--Spacing-x3) var(--Spacing-x7);
|
|
}
|
|
|
|
.level {
|
|
transform: rotate(-2deg);
|
|
}
|
|
|
|
.link {
|
|
justify-self: center;
|
|
} |