2026-02-21 00:19:04 +01:00
|
|
|
* {
|
2026-04-07 22:48:59 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: flex;
|
|
|
|
|
height: 100vh;
|
2026-04-08 11:03:20 +02:00
|
|
|
background-color: var(--color-bg-page);
|
2026-04-07 22:48:59 +02:00
|
|
|
overflow: hidden;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
html[dir="rtl"] .fa-arrow-left::before {
|
|
|
|
|
content: "\f061";
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
html[dir="rtl"] .fa-sign-out-alt {
|
|
|
|
|
-webkit-transform: rotate(180deg);
|
|
|
|
|
transform: rotate(180deg);
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
2026-03-05 13:15:34 +01:00
|
|
|
/* Utility: hide elements without inline style="" (CSP-safe) */
|
2026-04-07 22:48:59 +02:00
|
|
|
.hidden {
|
2026-04-11 11:18:05 +02:00
|
|
|
/* biome-ignore lint/complexity/noImportantStyles: this case to overide the display when hidden is selected */
|
|
|
|
|
display: none !important;
|
2026-04-07 22:48:59 +02:00
|
|
|
}
|