2022-06-22 09:14:55 +02:00
|
|
|
body.custom-wizard .wizard-column {
|
2020-08-19 05:14:28 +02:00
|
|
|
.wizard-step-contents {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
min-height: initial;
|
|
|
|
height: initial;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2022-06-22 09:14:55 +02:00
|
|
|
h1.wizard-step-title {
|
2020-08-19 05:14:28 +02:00
|
|
|
flex: 0;
|
2021-04-12 08:35:15 +02:00
|
|
|
|
2020-08-19 05:14:28 +02:00
|
|
|
p {
|
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-08 13:28:30 +01:00
|
|
|
.emoji {
|
2020-08-19 05:14:28 +02:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wizard-step-description {
|
|
|
|
flex: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
p {
|
|
|
|
img {
|
2023-02-08 13:28:30 +01:00
|
|
|
@extend .emoji
|
2020-08-19 05:14:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-container {
|
|
|
|
padding: 0 20px;
|
|
|
|
margin: 50px 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
a {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 140px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.group {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 130px;
|
|
|
|
height: 130px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
img.large {
|
|
|
|
width: 150;
|
2021-04-12 08:35:15 +02:00
|
|
|
padding: 25px;
|
2020-08-19 05:14:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
img.small {
|
|
|
|
width: 100;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.x-small {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-list > * {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wizard-step-banner {
|
|
|
|
width: initial;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wizard-step-form {
|
|
|
|
flex: auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-height: initial;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-04-12 08:35:15 +02:00
|
|
|
|
2020-08-19 05:14:28 +02:00
|
|
|
.wizard-progress {
|
|
|
|
.screen {
|
2020-08-19 06:41:20 +02:00
|
|
|
background-color: var(--tertiary);
|
2020-08-19 05:14:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.step-message {
|
|
|
|
text-align: center;
|
2021-04-12 08:35:15 +02:00
|
|
|
transition: all 0.2s;
|
2020-08-19 05:14:28 +02:00
|
|
|
z-index: 2;
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
&.success {
|
2020-08-19 06:41:20 +02:00
|
|
|
background-color: var(--success);
|
|
|
|
color: var(--secondary);
|
2020-08-19 05:14:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.error {
|
2020-08-19 06:41:20 +02:00
|
|
|
background-color: var(--danger);
|
|
|
|
color: var(--secondary);
|
2020-08-19 05:14:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.not-permitted {
|
2020-08-19 06:41:20 +02:00
|
|
|
background-color: var(--danger);
|
|
|
|
color: var(--secondary);
|
2020-08-19 05:14:28 +02:00
|
|
|
}
|
2021-04-12 08:35:15 +02:00
|
|
|
|
2020-08-19 05:14:28 +02:00
|
|
|
.text {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2021-04-12 08:35:15 +02:00
|
|
|
|
2020-08-19 05:14:28 +02:00
|
|
|
.reset-wizard {
|
|
|
|
margin-top: 20px;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2021-04-12 08:35:15 +02:00
|
|
|
}
|