2024-04-28 20:08:41 +02:00
|
|
|
.container {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: calc(50% - 150px);
|
|
|
|
|
left: calc(50% - 150px);
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
font-size: 10pt;
|
|
|
|
|
border-left: none;
|
|
|
|
|
border-top: none;
|
2024-05-27 19:17:52 +02:00
|
|
|
z-index: 3;
|
2024-04-28 20:08:41 +02:00
|
|
|
background-color: var(--challenge-modal-background-color);
|
|
|
|
|
border: var(--challenge-modal-border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
font-size: var(--challenge-modal-title-font-size);
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 18px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
cursor: move;
|
|
|
|
|
font-weight: var(--challenge-modal-title-font-weight);
|
|
|
|
|
background-color: var(--challenge-modal-title-background-color);
|
|
|
|
|
color: var(--challenge-modal-title-text-color);
|
|
|
|
|
border: var(--challenge-modal-title-border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.closeIcon {
|
|
|
|
|
all: unset;
|
|
|
|
|
float: right;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-bottom: -4px;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
border: none;
|
|
|
|
|
image-rendering: pixelated;
|
|
|
|
|
background-image: var(--close-button-background-image);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-29 14:26:02 +02:00
|
|
|
.container input[type="text"], .container textarea {
|
2024-05-08 16:05:05 +02:00
|
|
|
border: var(--reply-modal-field-input-border, revert);
|
2024-04-29 14:26:02 +02:00
|
|
|
font-family: var(--post-form-field-font-family, revert);
|
2024-05-08 12:23:18 +02:00
|
|
|
appearance: var(--post-form-field-input-appearance, revert);
|
|
|
|
|
outline: var(--post-form-field-input-outline, revert);
|
|
|
|
|
background-color: var(--post-form-field-input-background-color, revert);
|
|
|
|
|
color: var(--post-form-field-input-color, revert);
|
2024-04-28 20:08:41 +02:00
|
|
|
font-size: 10pt;
|
2024-04-29 14:26:02 +02:00
|
|
|
outline: var(--post-form-field-input-outline, revert);
|
2024-04-28 20:08:41 +02:00
|
|
|
width: 298px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-29 14:26:02 +02:00
|
|
|
.container input[type="text"]:focus, .container textarea:focus {
|
2024-05-08 16:05:05 +02:00
|
|
|
border: var(--reply-modal-field-input-border-focus, revert);
|
2024-04-29 14:26:02 +02:00
|
|
|
}
|
|
|
|
|
|
2024-05-09 22:25:06 +02:00
|
|
|
.content {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-28 20:08:41 +02:00
|
|
|
.content textarea {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer button {
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
float: right;
|
|
|
|
|
cursor: pointer;
|
2024-04-29 13:28:04 +02:00
|
|
|
}
|
|
|
|
|
|
2024-05-31 15:45:48 +02:00
|
|
|
.footer input[type="checkbox"] {
|
|
|
|
|
margin: 0 3px;
|
|
|
|
|
vertical-align: text-top;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spoilerButton {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-26 22:20:45 +02:00
|
|
|
.publishButton {
|
|
|
|
|
width: 75px;
|
|
|
|
|
filter: var(--filter80)
|
2024-05-08 12:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-08 21:33:56 +02:00
|
|
|
.offlineBoard {
|
|
|
|
|
width: 292px;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
background-color: #E62020;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: white;
|
|
|
|
|
padding: 3px 7px 3px 5px;
|
|
|
|
|
text-shadow: 0 1px rgba(0, 0, 0, 0.20);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-29 13:28:04 +02:00
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.container {
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
2024-04-28 20:08:41 +02:00
|
|
|
}
|