2024-10-07 01:06:55 +03:00
|
|
|
.captcha {
|
|
|
|
height: 65px;
|
|
|
|
}
|
|
|
|
article header {
|
2024-10-06 17:04:37 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-10-07 01:06:55 +03:00
|
|
|
justify-content: space-between;
|
2024-10-06 17:04:37 +03:00
|
|
|
}
|
2024-10-07 01:06:55 +03:00
|
|
|
|
|
|
|
article footer {
|
2024-10-06 17:04:37 +03:00
|
|
|
display: flex;
|
2024-10-07 01:06:55 +03:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2024-10-06 17:04:37 +03:00
|
|
|
}
|
2024-10-08 03:43:08 +03:00
|
|
|
|
|
|
|
.htmx-indicator{
|
|
|
|
opacity:0;
|
|
|
|
transition: opacity 500ms ease-in;
|
|
|
|
}
|
|
|
|
.htmx-request .htmx-indicator{
|
|
|
|
opacity:1;
|
|
|
|
}
|
|
|
|
.htmx-request.htmx-indicator{
|
|
|
|
opacity:1;
|
|
|
|
}
|