mapcomplete/public/css/tagrendering.css

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.4 KiB
CSS
Raw Normal View History

/**
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;
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: 0.75rem;
font-size: larger !important;
overflow-wrap: initial;
}
2020-10-27 01:01:34 +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
.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
}
.mapping-icon-medium-height {
/* A mapping icon type */
height: 3rem;
margin-right: 0.5rem;
width: unset;
}
2023-04-21 18:09:14 +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
.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
}
.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
}
.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