mapcomplete/css/tagrendering.css

125 lines
2.4 KiB
CSS
Raw Normal View History

2020-10-27 00:01:34 +00: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 02:26:09 +00:00
color: var(--subtle-detail-color-contrast);
2020-10-27 00:01:34 +00:00
padding: 1em;
border-radius: 1em;
font-size: larger;
}
2020-11-17 01:22:48 +00:00
.question svg {
width: 100%;
height: 100%;
}
.question a {
pointer-events: none;
text-decoration: none;
color: var(--subtle-detail-color-contrast)
}
2020-10-27 00:01:34 +00: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;
display: block;
2020-11-02 18:54:32 +00:00
width: 100%;
2021-01-24 17:33:16 +00:00
margin: 5px;
2020-10-27 00:01:34 +00:00
box-sizing: border-box;
padding: 0.5em;
2020-11-02 18:50:07 +00:00
}
2020-10-27 00:01:34 +00:00
input:checked + label .question-option-with-border {
2020-11-14 02:26:09 +00:00
border: 2px solid var(--subtle-detail-color-contrast);
2020-10-27 00:01:34 +00:00
}
.login-button-friendly {
display: inline-block;
2021-01-07 03:50:12 +00:00
background-color: var(--catch-detail-color);
color: var(--catch-detail-color-contrast);
2020-11-14 02:26:09 +00:00
border: solid var(--catch-detail-color-contrast) 2px;
2020-10-27 00:01:34 +00:00
padding: 0.2em 0.6em;
font-size: large;
font-weight: bold;
border-radius: 1.5em;
box-sizing: border-box;
width: 100%;
}
2020-11-06 00:58:26 +00:00
.edit-button img {
width: 1.3em;
height: 1.3em;
padding: 0.5em;
border-radius: 0.65em;
border: solid var(--popup-border) 1px;
2020-11-06 00:58:26 +00:00
font-size: medium;
float: right;
}
.edit-button svg {
width: 1.3em;
height: 1.3em;
padding: 0.5em;
border-radius: 0.65em;
2020-11-14 02:26:09 +00:00
border: solid var(--foreground-color) 1px;
stroke: var(--foreground-color) !important;
fill: var(--foreground-color) !important;
font-size: medium;
float: right;
}
2021-01-07 03:50:12 +00:00
.edit-button svg path {
2020-11-14 02:26:09 +00:00
stroke: var(--foreground-color) !important;
fill: var(--foreground-color) !important;
2021-01-07 03:50:12 +00:00
}
.to-the-map span {
font-size: xx-large;
}
.to-the-map {
background: var(--catch-detail-color);
height: var(--return-to-the-map-height);
color: var(--catch-detail-color-contrast);
font-weight: bold;
pointer-events: all;
cursor: pointer;
padding-top: 0.4em;
text-align: center;
box-sizing: border-box;
display: block;
2021-01-07 04:10:27 +00:00
max-height: var(--return-to-the-map-height);
position: fixed;
width: 100vw;
bottom: 0;
2021-01-18 18:44:26 +00:00
z-index: 100000;
2021-01-07 03:50:12 +00:00
}
.to-the-map-inner{
font-size: xx-large;
}