2022-02-19 06:18:01 +01:00
|
|
|
@charset "utf-8";
|
2018-08-11 07:47:10 +02:00
|
|
|
|
2025-01-25 09:28:08 +01:00
|
|
|
@use 'bulma/bulma';
|
|
|
|
@use 'bulma/sass/utilities/mixins';
|
2018-08-11 07:47:10 +02:00
|
|
|
|
2024-03-28 15:45:39 +01:00
|
|
|
.is-disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
> * {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-25 09:28:08 +01:00
|
|
|
.navbar-item {
|
|
|
|
width: var(--bulma-navbar-height);
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2018-08-11 07:47:10 +02:00
|
|
|
.media:first-of-type {
|
2023-12-07 16:43:47 +01:00
|
|
|
padding-top: 1rem;
|
2018-08-11 07:47:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 06:14:21 +02:00
|
|
|
.buttons {
|
2025-01-25 09:28:08 +01:00
|
|
|
@include mixins.mobile {
|
|
|
|
&.is-centered-mobile {
|
2022-02-19 06:39:14 +01:00
|
|
|
justify-content: center;
|
|
|
|
&:not(.has-addons) {
|
2025-01-25 09:28:08 +01:00
|
|
|
.button {
|
2022-02-19 06:39:14 +01:00
|
|
|
margin-left: 0.25rem;
|
|
|
|
margin-right: 0.25rem;
|
2020-05-16 06:14:21 +02:00
|
|
|
}
|
|
|
|
}
|
2022-02-19 06:39:14 +01:00
|
|
|
}
|
2020-05-16 06:14:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-25 09:28:08 +01:00
|
|
|
.overlay-fullscreen {
|
2020-05-16 06:29:02 +02:00
|
|
|
@extend .is-overlay;
|
2022-02-19 06:39:14 +01:00
|
|
|
z-index: 25;
|
2020-05-16 06:29:02 +02:00
|
|
|
background-color: rgba(10, 10, 10, 0.2);
|
|
|
|
position: fixed;
|
2020-05-16 13:54:24 +02:00
|
|
|
}
|
|
|
|
|
2025-02-15 23:30:34 +01:00
|
|
|
.dropdown-menu.is-mobile {
|
2025-01-25 09:28:08 +01:00
|
|
|
@include mixins.mobile {
|
|
|
|
width: 100vw;
|
2025-01-23 09:31:51 +01:00
|
|
|
}
|
2025-02-15 23:30:34 +01:00
|
|
|
.dropdown-content {
|
|
|
|
max-height: calc(100vh - calc(2 * var(--bulma-navbar-height)));
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2024-09-09 20:55:41 +02:00
|
|
|
}
|