2022-10-22 10:45:54 +02:00
|
|
|
@import '../../../styles/mixins.scss';
|
|
|
|
|
2022-08-29 23:17:12 -07:00
|
|
|
.lowerSection {
|
2023-04-24 10:58:57 -07:00
|
|
|
padding: var(--content-padding);
|
2022-08-29 23:17:12 -07:00
|
|
|
}
|
2022-09-10 12:08:22 -07:00
|
|
|
|
|
|
|
.lowerSectionMobile {
|
2022-12-29 19:14:12 +01:00
|
|
|
display: flex;
|
2023-02-21 16:15:09 -08:00
|
|
|
flex-direction: column;
|
2022-12-29 19:14:12 +01:00
|
|
|
flex-grow: 1;
|
2023-01-16 03:37:21 +01:00
|
|
|
flex-shrink: 0;
|
2022-09-10 12:08:22 -07:00
|
|
|
padding: 0.3em;
|
2023-04-26 23:31:23 +01:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include screen(tablet) {
|
|
|
|
//sets the position of tabbed content for online mode
|
|
|
|
top: 430px;
|
2022-09-10 12:08:22 -07:00
|
|
|
}
|
2023-04-26 23:31:23 +01:00
|
|
|
|
|
|
|
@include screen(mobile) {
|
|
|
|
//sets the position of tabbed content for online mode
|
|
|
|
top: 280px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobileNoTabs {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
2022-05-04 09:55:44 +02:00
|
|
|
|
2023-02-09 03:50:58 +01:00
|
|
|
.topSectionElement {
|
|
|
|
background-color: var(--theme-color-components-video-background);
|
2023-04-26 23:31:23 +01:00
|
|
|
@include screen(tablet) {
|
|
|
|
// "sticks" the stream to the top of the page
|
|
|
|
position: sticky;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
2023-02-09 03:50:58 +01:00
|
|
|
}
|
|
|
|
|
2023-04-26 09:40:17 -07:00
|
|
|
.offlineBanner {
|
|
|
|
color: var(--theme-color-background-main);
|
|
|
|
}
|
|
|
|
|
2023-04-26 23:31:23 +01:00
|
|
|
.mobileActionButtonMenu {
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 10px;
|
|
|
|
z-index: 200;
|
2023-02-09 03:50:58 +01:00
|
|
|
}
|
|
|
|
|
2023-04-26 23:31:23 +01:00
|
|
|
//not sure if this is needed
|
|
|
|
.statusBar {
|
|
|
|
flex-shrink: 0;
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
2022-05-17 16:07:56 -07:00
|
|
|
|
2023-04-26 23:31:23 +01:00
|
|
|
// not sure if this is needed
|
2022-05-25 20:38:40 -07:00
|
|
|
.loadingSpinner {
|
2022-10-17 11:37:21 +05:30
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
2023-01-16 03:37:21 +01:00
|
|
|
.defaultTabBar {
|
|
|
|
width: 85%;
|
|
|
|
}
|
|
|
|
|
2023-02-21 16:15:09 -08:00
|
|
|
.bottomPageContentContainer {
|
|
|
|
background-color: var(--theme-color-components-content-background);
|
|
|
|
padding: calc(2 * var(--content-padding));
|
|
|
|
border-radius: var(--theme-rounded-corners);
|
|
|
|
width: 100%;
|
2023-04-15 17:50:52 -07:00
|
|
|
|
|
|
|
h1:first-child,
|
|
|
|
h2:first-child,
|
|
|
|
h3:first-child {
|
|
|
|
margin-top: unset;
|
|
|
|
}
|
2023-02-21 16:15:09 -08:00
|
|
|
}
|