2020-11-27 13:39:00 +01:00
|
|
|
|
2023-05-09 00:06:51 +02:00
|
|
|
/**
|
|
|
|
Some utility functions which are only used to render data
|
|
|
|
*/
|
|
|
|
|
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;
|
2023-01-13 02:48:48 +01:00
|
|
|
border-radius: 0.75rem;
|
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
|
|
|
|
2023-05-09 00:06:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
.mapping-icon-small-height {
|
|
|
|
/* A mapping icon type */
|
|
|
|
height: 1.5rem;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
width: unset;
|
2020-10-27 01:01:34 +01:00
|
|
|
}
|
|
|
|
|
2023-05-09 00:06:51 +02:00
|
|
|
.mapping-icon-medium-height {
|
|
|
|
/* A mapping icon type */
|
|
|
|
height: 3rem;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
width: unset;
|
|
|
|
}
|
2023-04-21 18:09:14 +02:00
|
|
|
|
2023-05-09 00:06:51 +02:00
|
|
|
.mapping-icon-large-height {
|
|
|
|
/* A mapping icon type */
|
|
|
|
height: 5rem;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
width: unset;
|
|
|
|
}
|
2020-10-27 01:01:34 +01:00
|
|
|
|
2023-05-09 00:06:51 +02:00
|
|
|
.mapping-icon-small {
|
|
|
|
/* A mapping icon type */
|
|
|
|
width: 1.5rem;
|
|
|
|
max-height: 1.5rem;
|
|
|
|
margin-right: 0.5rem;
|
2020-11-02 19:50:07 +01:00
|
|
|
}
|
|
|
|
|
2023-05-09 00:06:51 +02:00
|
|
|
.mapping-icon-medium {
|
|
|
|
/* A mapping icon type */
|
|
|
|
width: 3rem;
|
|
|
|
max-height: 3rem;
|
|
|
|
margin-right: 1rem;
|
|
|
|
margin-left: 1rem;
|
2020-10-27 01:01:34 +01:00
|
|
|
}
|
|
|
|
|
2023-05-09 00:06:51 +02:00
|
|
|
.mapping-icon-large {
|
|
|
|
/* A mapping icon type */
|
|
|
|
width: 6rem;
|
|
|
|
max-height: 5rem;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
margin-right: 1.5rem;
|
|
|
|
margin-left: 1.5rem;
|
2020-10-27 01:01:34 +01:00
|
|
|
}
|
|
|
|
|
2021-01-07 04:50:12 +01:00
|
|
|
|