|
|
|
@ -100,61 +100,6 @@ |
|
|
|
background-color: #0058a3; |
|
|
|
} |
|
|
|
|
|
|
|
header { |
|
|
|
view-transition-name: none; |
|
|
|
} |
|
|
|
|
|
|
|
main { |
|
|
|
view-transition-name: main; |
|
|
|
} |
|
|
|
|
|
|
|
footer { |
|
|
|
view-transition-name: none; |
|
|
|
} |
|
|
|
|
|
|
|
::view-transition-old(root), |
|
|
|
::view-transition-new(root) { |
|
|
|
animation: none; /* takes them out of the overlay tree */ |
|
|
|
} |
|
|
|
|
|
|
|
::view-transition-old(main) { |
|
|
|
z-index: 1; |
|
|
|
} |
|
|
|
|
|
|
|
::view-transition-new(main) { |
|
|
|
z-index: 2; |
|
|
|
} |
|
|
|
|
|
|
|
@keyframes slide-in { |
|
|
|
from { |
|
|
|
transform: translateY(100dvh); |
|
|
|
} |
|
|
|
|
|
|
|
to { |
|
|
|
transform: translateY(0); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@keyframes slide-out { |
|
|
|
from { |
|
|
|
transform: translateY(0); |
|
|
|
} |
|
|
|
|
|
|
|
to { |
|
|
|
transform: translateY(-100dvh); |
|
|
|
} |
|
|
|
} |
|
|
|
/* Forward nav (normal clicks) */ |
|
|
|
html[data-turbo-visit-direction="forward"] { |
|
|
|
&::view-transition-new(main) { animation: slide-in .3s ease-out both; } |
|
|
|
&::view-transition-old(main) { animation: slide-out .3s ease-in both; } |
|
|
|
} |
|
|
|
|
|
|
|
/* Back button reverses the sense */ |
|
|
|
html[data-turbo-visit-direction="back"] { |
|
|
|
&::view-transition-new(main) { animation: none } |
|
|
|
&::view-transition-old(main) { animation: none } |
|
|
|
} |
|
|
|
|
|
|
|
body { |
|
|
|
background-color: var(--clr-dark-yellow); |
|
|
|
@ -163,6 +108,7 @@ body { |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
gap: 0; |
|
|
|
min-height: 100vh; |
|
|
|
min-height: 100dvh; |
|
|
|
-webkit-font-smoothing: antialiased; |
|
|
|
touch-action: manipulation; |
|
|
|
@ -224,478 +170,6 @@ footer { |
|
|
|
color: var(--clr-white); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.language__selector-select { |
|
|
|
position: relative; |
|
|
|
display: inline-block; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.hidden-select { |
|
|
|
position: absolute; |
|
|
|
opacity: 0; |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
cursor: pointer; |
|
|
|
z-index: 1; |
|
|
|
font-size: var(--fs-base); |
|
|
|
border: 2px solid red; |
|
|
|
} |
|
|
|
|
|
|
|
.hidden-select-value { |
|
|
|
background-color: var(--clr-black); |
|
|
|
color: var(--clr-white); |
|
|
|
font-size: var(--fs-base); |
|
|
|
font-weight: 700; |
|
|
|
font-family: var(--ff-ikea); |
|
|
|
line-height: 1; |
|
|
|
border-radius: 400px; |
|
|
|
height: 43px; |
|
|
|
padding: 0 20px; |
|
|
|
display: inline-flex; |
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
|
|
|
& > div { |
|
|
|
display: inline-flex; |
|
|
|
align-items: baseline; |
|
|
|
gap: 0.4em; |
|
|
|
pointer-events: none; |
|
|
|
} |
|
|
|
|
|
|
|
& svg { |
|
|
|
width: 8px; |
|
|
|
height: auto; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.button__base { |
|
|
|
appearance: none; |
|
|
|
background-color: var(--clr-black); |
|
|
|
border: 2px solid var(--clr-black); |
|
|
|
color: var(--clr-white); |
|
|
|
font-size: var(--fs-base); |
|
|
|
font-family: var(--ff-ikea); |
|
|
|
font-weight: 700; |
|
|
|
height: 2.75rem; |
|
|
|
border-radius: 2.75rem; |
|
|
|
width: 100%; |
|
|
|
cursor: pointer; |
|
|
|
text-decoration: none; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
padding: 0 1em; |
|
|
|
box-sizing: border-box; |
|
|
|
transition: transform 0.08s ease-in-out; |
|
|
|
user-select: none; |
|
|
|
-webkit-user-select: none; |
|
|
|
-webkit-tap-highlight-color: transparent; |
|
|
|
|
|
|
|
&:not(.wiggle):active { |
|
|
|
transform: scale(0.96); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@keyframes wiggle { |
|
|
|
0%, 100% { transform: translateX(0); } |
|
|
|
15% { transform: translateX(-6px); } |
|
|
|
30% { transform: translateX(6px); } |
|
|
|
45% { transform: translateX(-4px); } |
|
|
|
60% { transform: translateX(4px); } |
|
|
|
75% { transform: translateX(-2px); } |
|
|
|
} |
|
|
|
|
|
|
|
.wiggle { |
|
|
|
animation: wiggle 0.45s ease-in-out; |
|
|
|
} |
|
|
|
|
|
|
|
.button__base-light { |
|
|
|
background-color: transparent; |
|
|
|
color: var(--clr-black); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
main { |
|
|
|
padding: 50px 0.75rem 1rem 0.75rem; |
|
|
|
flex-grow: 1; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
justify-content: end; |
|
|
|
|
|
|
|
&:has(.with-backdrop) { |
|
|
|
background-color: var(--clr-dark-yellow); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.background-container { |
|
|
|
position: fixed; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
pointer-events: none; |
|
|
|
z-index: -1; |
|
|
|
& img { |
|
|
|
display: block; |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
object-fit: cover; |
|
|
|
opacity: 0; |
|
|
|
transition: opacity 0.4s ease-in-out; |
|
|
|
|
|
|
|
|
|
|
|
&.loaded { |
|
|
|
opacity: 1; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@media (min-width: 474px) { |
|
|
|
main { |
|
|
|
justify-content: center; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.intro-container { |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 1; |
|
|
|
grid-template-rows: auto; |
|
|
|
/*gap: 8px;*/ |
|
|
|
} |
|
|
|
|
|
|
|
.intro-content-container, |
|
|
|
.question-container { |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 1; |
|
|
|
grid-template-rows: auto; |
|
|
|
/*gap: 8px;*/ |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
.intro-container, |
|
|
|
.question-container { |
|
|
|
max-width: 450px; |
|
|
|
margin: 0 auto; |
|
|
|
} |
|
|
|
|
|
|
|
.intro-content-header, |
|
|
|
.intro-content-body { |
|
|
|
padding: 1rem 0.75rem; |
|
|
|
border-radius: 0.75rem; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.intro-content-header { |
|
|
|
background-color: var(--clr-white); |
|
|
|
font-size: var(--fs-2xl); |
|
|
|
line-height: 1.2; |
|
|
|
font-weight: 700; |
|
|
|
} |
|
|
|
|
|
|
|
.intro-content-body { |
|
|
|
background-color: var(--clr-medium-yellow); |
|
|
|
font-size: var(--fs-base); |
|
|
|
line-height: 1.4; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.question-step { |
|
|
|
font-size: var(--fs-s); |
|
|
|
font-weight: 700; |
|
|
|
line-height: 1; |
|
|
|
display: flex; |
|
|
|
& div { |
|
|
|
background-color: var(--clr-medium-yellow); |
|
|
|
padding: 0.625rem 0.75rem; |
|
|
|
border-radius: 400px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.question-header { |
|
|
|
background-color: var(--clr-medium-yellow); |
|
|
|
border-radius: 1rem; |
|
|
|
font-size: var(--fs-xl); |
|
|
|
line-height: 1.2; |
|
|
|
font-weight: 700; |
|
|
|
padding: 1rem 0.75rem; |
|
|
|
} |
|
|
|
|
|
|
|
.error { |
|
|
|
padding: 1rem 0.75rem; |
|
|
|
border-radius: 1rem; |
|
|
|
background-color: var(--clr-text-highlight); |
|
|
|
color: var(--clr-black); |
|
|
|
font-size: var(--fs-s); |
|
|
|
line-height: 1.2; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.question-answer { |
|
|
|
|
|
|
|
font-size: var(--fs-lg); |
|
|
|
line-height: 1.4; |
|
|
|
|
|
|
|
|
|
|
|
& label { |
|
|
|
display: block; |
|
|
|
padding: 1rem 0.75rem; |
|
|
|
border-radius: 1rem; |
|
|
|
background-color: var(--clr-white); |
|
|
|
cursor: pointer; |
|
|
|
user-select: none; |
|
|
|
-webkit-user-select: none; |
|
|
|
-webkit-tap-highlight-color: transparent; |
|
|
|
|
|
|
|
& div { |
|
|
|
position: relative; |
|
|
|
display: inline-block; |
|
|
|
padding: 0 0.2em; |
|
|
|
margin: 0 -0.2em; |
|
|
|
} |
|
|
|
|
|
|
|
& div::after { |
|
|
|
content: ''; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
background: var(--clr-text-highlight); |
|
|
|
clip-path: inset(0 100% 0 0); |
|
|
|
transition: clip-path 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); |
|
|
|
z-index: 1; |
|
|
|
mix-blend-mode: darken; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
& input[type=radio] { |
|
|
|
position: absolute; |
|
|
|
opacity: 0; |
|
|
|
cursor: pointer; |
|
|
|
height: 0; |
|
|
|
width: 0; |
|
|
|
} |
|
|
|
|
|
|
|
&:has(input[type=radio]:checked) { |
|
|
|
|
|
|
|
& label>div::after { |
|
|
|
clip-path: inset(0 0 0 0); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
& + .question-answer { |
|
|
|
margin-top: 8px; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.question-container { |
|
|
|
& em { |
|
|
|
font-style: normal; |
|
|
|
background-color: var(--clr-text-highlight); |
|
|
|
padding: 1px 2px; |
|
|
|
margin-right: -2px; |
|
|
|
} |
|
|
|
|
|
|
|
& strong { |
|
|
|
font-weight: 700; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.question-result, .result-stats { |
|
|
|
background-color: var(--clr-medium-yellow); |
|
|
|
border-radius: 0.75rem; |
|
|
|
font-size: var(--fs-base); |
|
|
|
line-height: 1.4; |
|
|
|
padding: 1rem 0.75rem; |
|
|
|
} |
|
|
|
|
|
|
|
.result-actions { |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 1fr 1fr; |
|
|
|
gap: 0.5rem; |
|
|
|
|
|
|
|
& a { |
|
|
|
background-color: var(--clr-medium-yellow); |
|
|
|
border-color: var(--clr-medium-yellow); |
|
|
|
color: var(--clr-black) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.answers-distribution { |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 1fr 1fr; |
|
|
|
gap: 8px; |
|
|
|
|
|
|
|
|
|
|
|
height: 45dvh; |
|
|
|
max-height: 300px; |
|
|
|
|
|
|
|
& > div { |
|
|
|
box-sizing: border-box; |
|
|
|
padding: 1rem 0.75rem; |
|
|
|
background-color: var(--clr-medium-yellow); |
|
|
|
border-radius: 0.75rem; |
|
|
|
color: var(--clr-dark-yellow); |
|
|
|
font-size: var(--fs-s); |
|
|
|
font-weight: 700; |
|
|
|
line-height: 1.3; |
|
|
|
|
|
|
|
align-self: end; |
|
|
|
|
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
justify-content: space-between; |
|
|
|
gap: 0; |
|
|
|
|
|
|
|
transition: background-color 200ms ease-in-out, color 200ms ease-in-out; |
|
|
|
|
|
|
|
&.answered { |
|
|
|
background-color: var(--clr-white); |
|
|
|
color: var(--clr-black); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
& .explanation { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
|
|
|
|
& .percentage { |
|
|
|
font-size: var(--fs-4xl); |
|
|
|
line-height: 1; |
|
|
|
opacity: 0; |
|
|
|
|
|
|
|
&::after { |
|
|
|
content: '%'; |
|
|
|
font-size: 2.5rem; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.breakable { |
|
|
|
overflow-wrap: break-word; |
|
|
|
word-wrap: break-word; |
|
|
|
hyphens: auto; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.result-msg { |
|
|
|
background-color: var(--clr-white); |
|
|
|
border-radius: 0.75rem; |
|
|
|
font-size: var(--fs-base); |
|
|
|
line-height: 1.4; |
|
|
|
padding: 1.25rem 0.75rem; |
|
|
|
|
|
|
|
& h1 { |
|
|
|
font-size: var(--fs-3xl); |
|
|
|
line-height: 1.1; |
|
|
|
margin: 0 0 0.4em 0; |
|
|
|
overflow-wrap: break-word; |
|
|
|
word-wrap: break-word; |
|
|
|
hyphens: auto; |
|
|
|
} |
|
|
|
|
|
|
|
& div:first-child { |
|
|
|
font-weight: 700; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
label.question-answer { |
|
|
|
display: flex; |
|
|
|
align-items: start; |
|
|
|
height: 6.75rem; |
|
|
|
cursor: pointer; |
|
|
|
padding: 1rem 0.75rem; |
|
|
|
border-radius: 1rem; |
|
|
|
background-color: var(--clr-white); |
|
|
|
|
|
|
|
& input { |
|
|
|
flex-grow: 1; |
|
|
|
border: none; |
|
|
|
outline: none; |
|
|
|
font-size: var(--fs-lg); |
|
|
|
line-height: 1.4; |
|
|
|
padding: 0; |
|
|
|
} |
|
|
|
|
|
|
|
&:has(.field_with_errors) { |
|
|
|
outline: 4px solid var(--clr-text-highlight); |
|
|
|
outline-offset: -4px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
label { |
|
|
|
cursor: pointer; |
|
|
|
} |
|
|
|
|
|
|
|
.animation-element { |
|
|
|
box-sizing: border-box; |
|
|
|
opacity: 0; |
|
|
|
padding-top: 8px; |
|
|
|
|
|
|
|
&:last-child { |
|
|
|
padding-top: 12px; |
|
|
|
} |
|
|
|
|
|
|
|
& > * { |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.typewriter-cursor::after { |
|
|
|
content: '|'; |
|
|
|
animation: typewriter-blink 1s infinite; |
|
|
|
color: currentColor; |
|
|
|
font-weight: 400; |
|
|
|
position: absolute; |
|
|
|
} |
|
|
|
|
|
|
|
@keyframes typewriter-blink { |
|
|
|
0%, 50% { opacity: 1; } |
|
|
|
51%, 100% { opacity: 0; } |
|
|
|
} |
|
|
|
/*.cursor { |
|
|
|
animation: blink 1000ms infinite; |
|
|
|
color: var(--clr-black); |
|
|
|
font-weight: 400; |
|
|
|
} |
|
|
|
|
|
|
|
@keyframes blink { |
|
|
|
0%, 50% { opacity: 1; } |
|
|
|
51%, 100% { opacity: 0; } |
|
|
|
}*/ |
|
|
|
|
|
|
|
|
|
|
|
@media (min-width: 815px) { |
|
|
|
header { |
|
|
|
top: 1.25rem; |
|
|
|
left: 1.875rem; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
main { |
|
|
|
padding: calc(50px + 1.25rem) 1.25rem 1.875rem 1.25rem; |
|
|
|
} |
|
|
|
|
|
|
|
footer { |
|
|
|
top: 1.25rem; |
|
|
|
right: 1.875rem; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
[data-locale] { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
|