2022-02-19 00:18:01 -05:00
|
|
|
@charset "utf-8";
|
2018-08-11 01:47:10 -04:00
|
|
|
|
2022-02-19 00:18:01 -05:00
|
|
|
@import 'bulma/bulma.sass';
|
|
|
|
@import 'bulma-switch';
|
2020-05-16 00:14:21 -04:00
|
|
|
|
2022-02-19 00:18:01 -05:00
|
|
|
/* Volume slider */
|
2018-08-11 01:47:10 -04:00
|
|
|
.slider {
|
|
|
|
min-width: 250px;
|
|
|
|
width: 100%;
|
2022-02-19 00:18:01 -05:00
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
--slider-height: 4px;
|
2023-06-11 02:32:52 -04:00
|
|
|
--slider-connect-bg: #{$dark};
|
|
|
|
--slider-tooltip-bg: #{$dark};
|
2022-02-19 00:39:14 -05:00
|
|
|
--slider-handle-ring-color: #3b82f630;
|
|
|
|
--slider-handle-shadow: 0.5px 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.32);
|
|
|
|
--slider-handle-shadow-active: 0.5px 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.42);
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
|
2022-02-19 00:18:01 -05:00
|
|
|
/* Now playing progress bar */
|
|
|
|
.seek-slider {
|
2019-01-31 05:42:40 -05:00
|
|
|
min-width: 250px;
|
2022-02-19 00:18:01 -05:00
|
|
|
max-width: 500px;
|
|
|
|
width: 100% !important;
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
margin: 0 auto 16px auto;
|
|
|
|
--slider-height: 4px;
|
2023-06-11 02:32:52 -04:00
|
|
|
--slider-connect-bg: #{$primary};
|
|
|
|
--slider-tooltip-bg: #{$primary};
|
|
|
|
--slider-handle-bg: #{$primary};
|
2022-02-19 00:18:01 -05:00
|
|
|
--slider-handle-border: 0;
|
|
|
|
--slider-handle-width: 10px;
|
|
|
|
--slider-handle-height: 10px;
|
|
|
|
--slider-handle-radius: 9999px;
|
2022-02-19 00:39:14 -05:00
|
|
|
--slider-handle-shadow: 0.5px 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.32);
|
|
|
|
--slider-handle-shadow-active: 0.5px 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.42);
|
2022-02-19 00:18:01 -05:00
|
|
|
--slider-handle-ring-width: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
background-color: $info;
|
|
|
|
border-radius: 9999px;
|
|
|
|
height: 4px;
|
2019-01-31 05:42:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.media.with-progress h2:last-of-type {
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media.with-progress {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2018-08-11 01:47:10 -04:00
|
|
|
a.navbar-item {
|
|
|
|
outline: 0;
|
|
|
|
line-height: 1.5;
|
2022-02-19 00:39:14 -05:00
|
|
|
padding: 0.5rem 1rem;
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.fd-expanded {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
|
2023-06-10 13:22:29 -04:00
|
|
|
.fd-is-not-allowed {
|
|
|
|
cursor: not-allowed;
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.fd-is-movable {
|
|
|
|
cursor: move;
|
|
|
|
}
|
|
|
|
|
2018-11-09 23:16:25 -05:00
|
|
|
.fd-has-margin-top {
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fd-has-margin-bottom {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fd-has-padding-left-right {
|
|
|
|
padding-left: 24px;
|
|
|
|
padding-right: 24px;
|
|
|
|
}
|
|
|
|
|
2018-12-08 02:48:15 -05:00
|
|
|
.fd-is-square .button {
|
|
|
|
height: 27px;
|
2020-10-08 00:01:17 -04:00
|
|
|
min-width: 27px;
|
|
|
|
padding-left: 0.25rem;
|
|
|
|
padding-right: 0.25rem;
|
2018-12-08 02:48:15 -05:00
|
|
|
}
|
|
|
|
|
2018-08-11 01:47:10 -04:00
|
|
|
.fd-is-text-clipped {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fd-tabs-section {
|
2018-12-08 02:48:15 -05:00
|
|
|
padding-bottom: 3px;
|
|
|
|
padding-top: 3px;
|
2023-06-11 02:32:52 -04:00
|
|
|
background: #{white};
|
2018-12-08 02:48:15 -05:00
|
|
|
top: 3.25rem;
|
|
|
|
z-index: 20;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
section.fd-tabs-section + section.fd-content {
|
|
|
|
margin-top: 24px;
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
|
2020-05-16 07:54:24 -04:00
|
|
|
section.hero + section.fd-content {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2018-08-11 01:47:10 -04:00
|
|
|
.fd-progress-bar {
|
|
|
|
top: 52px !important;
|
|
|
|
}
|
|
|
|
|
2023-06-07 10:11:40 -04:00
|
|
|
.fd-has-shadow img {
|
2018-11-09 23:16:25 -05:00
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
}
|
|
|
|
|
2022-02-19 00:18:01 -05:00
|
|
|
.fd-page {
|
|
|
|
margin-top: 3.25rem;
|
2022-04-02 13:07:56 -04:00
|
|
|
margin-bottom: 3.25rem;
|
2022-02-19 00:18:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.fd-page-with-tabs {
|
|
|
|
margin-top: 6.25rem !important;
|
2022-04-02 13:07:56 -04:00
|
|
|
margin-bottom: 3.25rem;
|
2022-02-19 00:18:01 -05:00
|
|
|
}
|
|
|
|
|
2020-10-07 03:03:02 -04:00
|
|
|
/* Set minimum height to hide "option" section */
|
|
|
|
.fd-content-with-option {
|
2022-02-19 01:47:54 -05:00
|
|
|
min-height: calc(100vh - 3.25rem - 3.25rem);
|
2020-10-07 03:03:02 -04:00
|
|
|
}
|
|
|
|
|
2020-04-17 10:24:49 -04:00
|
|
|
/* Now playing page */
|
|
|
|
.fd-is-fullheight {
|
|
|
|
height: calc(100vh - 3.25rem - 3.25rem);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-04-20 13:09:07 -04:00
|
|
|
justify-content: center;
|
2020-04-17 10:24:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.fd-is-fullheight .fd-is-expanded {
|
|
|
|
padding: 1.5rem;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2023-06-07 10:11:40 -04:00
|
|
|
.fd-cover {
|
2023-06-11 02:27:45 -04:00
|
|
|
align-items: center;
|
2020-05-01 03:29:30 -04:00
|
|
|
display: flex;
|
2023-06-07 10:11:40 -04:00
|
|
|
justify-content: center;
|
|
|
|
&-small-image {
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
img {
|
|
|
|
border-radius: $radius-small;
|
|
|
|
max-width: 64px;
|
|
|
|
max-height: 64px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-medium-image {
|
|
|
|
@include from($tablet) {
|
|
|
|
justify-content: right;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
border-radius: $radius;
|
|
|
|
max-height: calc(150px - 1.5rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-normal-image {
|
|
|
|
img {
|
|
|
|
border-radius: $radius-large;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-big-image {
|
|
|
|
@include mobile {
|
|
|
|
@media screen and (orientation: landscape) {
|
|
|
|
img {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
border-radius: $radius-large;
|
|
|
|
max-height: calc(100vh - 26rem);
|
|
|
|
}
|
|
|
|
}
|
2020-04-17 10:24:49 -04:00
|
|
|
}
|
|
|
|
|
2018-08-11 01:47:10 -04:00
|
|
|
.sortable-chosen .media-right {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2022-02-19 00:39:14 -05:00
|
|
|
.sortable-ghost h1,
|
|
|
|
.sortable-ghost h2 {
|
2023-06-11 02:32:52 -04:00
|
|
|
color: #{$danger};
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.media:first-of-type {
|
|
|
|
padding-top: 17px;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Transition effect */
|
2022-02-19 00:18:01 -05:00
|
|
|
.fade-leave-active {
|
2022-02-19 00:39:14 -05:00
|
|
|
transition: opacity 0.2s ease;
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
2022-02-19 00:18:01 -05:00
|
|
|
.fade-enter-active {
|
2022-02-19 00:39:14 -05:00
|
|
|
transition: opacity 0.5s ease;
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
2022-02-19 00:39:14 -05:00
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
2022-02-19 00:18:01 -05:00
|
|
|
opacity: 0;
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
2022-02-19 00:39:14 -05:00
|
|
|
.fade-enter-to,
|
|
|
|
.fade-leave-from {
|
2022-02-19 00:18:01 -05:00
|
|
|
opacity: 1;
|
2018-08-11 01:47:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a little bit of spacing between title and subtitle */
|
|
|
|
.title:not(.is-spaced) + .subtitle {
|
|
|
|
margin-top: -1.3rem !important;
|
|
|
|
}
|
|
|
|
.title:not(.is-spaced) + .subtitle + .subtitle {
|
|
|
|
margin-top: -1.3rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only scroll content if modal contains a card component */
|
|
|
|
.fd-modal-card {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
.fd-modal-card .card-content {
|
|
|
|
max-height: calc(100vh - 200px);
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2018-12-16 05:02:58 -05:00
|
|
|
.fd-modal-card .card {
|
|
|
|
margin-left: 16px;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
2019-08-25 02:17:44 -04:00
|
|
|
|
2020-05-03 00:59:42 -04:00
|
|
|
.navbar-item .fd-navbar-item-level2 {
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
}
|
|
|
|
hr.fd-navbar-divider {
|
|
|
|
margin: 12px 0;
|
|
|
|
}
|
|
|
|
|
2020-05-02 02:13:33 -04:00
|
|
|
/* Show scrollbar for navbar menu in desktop mode if content exceeds the screen size */
|
|
|
|
@media only screen and (min-width: 1024px) {
|
|
|
|
.navbar-dropdown {
|
|
|
|
max-height: calc(100vh - 3.25rem - 3.25rem - 2rem);
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Limit the size of the bottom navbar menu to not be displayed behind the Safari browser menu on iOS */
|
|
|
|
.fd-bottom-navbar .navbar-menu {
|
|
|
|
max-height: calc(100vh - 3.25rem - 3.25rem - 1rem);
|
|
|
|
overflow: scroll;
|
2020-05-16 00:14:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
@include mobile {
|
2022-02-19 00:39:14 -05:00
|
|
|
&.fd-is-centered-mobile {
|
|
|
|
justify-content: center;
|
|
|
|
&:not(.has-addons) {
|
|
|
|
.button:not(.is-fullwidth) {
|
|
|
|
margin-left: 0.25rem;
|
|
|
|
margin-right: 0.25rem;
|
2020-05-16 00:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
2022-02-19 00:39:14 -05:00
|
|
|
}
|
2020-05-16 00:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.column {
|
|
|
|
&.fd-has-cover {
|
|
|
|
@include mobile {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
@include from($tablet) {
|
2023-06-07 10:11:40 -04:00
|
|
|
margin-right: 0;
|
2020-05-16 00:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
2020-05-16 00:29:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.fd-overlay-fullscreen {
|
|
|
|
@extend .is-overlay;
|
2022-02-19 00:39:14 -05:00
|
|
|
z-index: 25;
|
2020-05-16 00:29:02 -04:00
|
|
|
background-color: rgba(10, 10, 10, 0.2);
|
|
|
|
position: fixed;
|
2020-05-16 07:54:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero-body {
|
|
|
|
padding: 1.5rem !important;
|
2022-02-19 00:39:14 -05:00
|
|
|
}
|