2024-03-21 15:21:33 +01:00
|
|
|
.postFormButtonDesktop {
|
2024-03-20 13:00:11 +01:00
|
|
|
font-size: var(--post-form-toggle-font-size);
|
|
|
|
|
font-weight: var(--post-form-toggle-font-weight);
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-21 15:21:33 +01:00
|
|
|
.postFormButtonMobile {
|
|
|
|
|
text-align: center;
|
2024-03-22 12:09:17 +01:00
|
|
|
padding-top: 9px;
|
2024-03-28 12:41:40 +01:00
|
|
|
padding-bottom: 0.5em;
|
2024-03-21 15:21:33 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-08 17:13:02 +02:00
|
|
|
.closed {
|
|
|
|
|
font-size: x-large;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: red;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
padding-top: 100px;
|
|
|
|
|
padding-bottom: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-21 15:21:33 +01:00
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.postFormButtonDesktop {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-10 13:16:07 +02:00
|
|
|
@media (min-width: 640px) {
|
2024-03-21 15:21:33 +01:00
|
|
|
.postFormButtonMobile {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-03-20 13:00:11 +01:00
|
|
|
}
|