2020-11-27 13:39:00 +01:00
|
|
|
|
2020-10-27 01:01:34 +01:00
|
|
|
.question .form-text-field > input {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.question {
|
|
|
|
display: block;
|
|
|
|
margin-top: 1em;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--subtle-detail-color);
|
2020-11-14 03:26:09 +01:00
|
|
|
color: var(--subtle-detail-color-contrast);
|
2020-10-27 01:01:34 +01:00
|
|
|
padding: 1em;
|
|
|
|
border-radius: 1em;
|
2021-11-12 01:44:13 +01:00
|
|
|
font-size: larger !important;
|
2021-11-10 18:42:31 +01:00
|
|
|
overflow-wrap: initial;
|
|
|
|
}
|
2020-10-27 01:01:34 +01:00
|
|
|
|
2021-11-10 18:42:31 +01:00
|
|
|
.question form {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 90vw;
|
|
|
|
width: 100%;
|
2020-10-27 01:01:34 +01:00
|
|
|
}
|
|
|
|
|
2020-11-17 02:22:48 +01:00
|
|
|
.question svg {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-10-27 01:01:34 +01:00
|
|
|
.question-text {
|
|
|
|
font-size: larger;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.question-text img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.question-subtext {
|
|
|
|
font-size: medium;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.question-option-with-border {
|
|
|
|
border: 2px solid lightgray;
|
|
|
|
border-radius: 0.5em;
|
2021-01-21 06:03:34 +01:00
|
|
|
display: block;
|
2020-11-02 19:54:32 +01:00
|
|
|
width: 100%;
|
2021-01-24 18:33:16 +01:00
|
|
|
margin: 5px;
|
2020-10-27 01:01:34 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0.5em;
|
2020-11-02 19:50:07 +01:00
|
|
|
}
|
|
|
|
|
2020-10-27 01:01:34 +01:00
|
|
|
input:checked + label .question-option-with-border {
|
2020-11-14 03:26:09 +01:00
|
|
|
border: 2px solid var(--subtle-detail-color-contrast);
|
2020-10-27 01:01:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.login-button-friendly {
|
|
|
|
display: inline-block;
|
2021-01-07 04:50:12 +01:00
|
|
|
background-color: var(--catch-detail-color);
|
2020-11-14 02:54:33 +01:00
|
|
|
color: var(--catch-detail-color-contrast);
|
2020-11-14 03:26:09 +01:00
|
|
|
border: solid var(--catch-detail-color-contrast) 2px;
|
2020-10-27 01:01:34 +01:00
|
|
|
padding: 0.2em 0.6em;
|
|
|
|
font-size: large;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 1.5em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-01-07 04:50:12 +01:00
|
|
|
|