124 lines
1.8 KiB
SCSS
Executable File
124 lines
1.8 KiB
SCSS
Executable File
@import "../../stylesheets/variables/_all";
|
|
|
|
:root {
|
|
--mobile-nav-height: 5rem;
|
|
--mobile-margin-top: .25rem;
|
|
--arrow-l-left: 1.1rem;
|
|
--arrow-r-left: 2.5rem;
|
|
--arrow-size: 40%;
|
|
}
|
|
|
|
.navbar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height:var(--mobile-nav-height);
|
|
}
|
|
|
|
.top,
|
|
.bottom {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.bottom {
|
|
@include mq($phone-landscape) {
|
|
margin-top: var(--mobile-margin-top);
|
|
}
|
|
}
|
|
|
|
.left,
|
|
.right,
|
|
.center {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.right {
|
|
flex: 0;
|
|
}
|
|
|
|
.center {
|
|
width: 70%;
|
|
flex: 1;
|
|
}
|
|
|
|
.presentationTitle {
|
|
font-weight: 200;
|
|
color: var(--color-white);
|
|
font-size: var(--font-size-base);
|
|
margin: 0;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 30vw;
|
|
|
|
> [class^="icon-bbb-"] {
|
|
font-size: 75%;
|
|
}
|
|
}
|
|
|
|
.btnWithNotificationDot {
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
width: 12px;
|
|
height: 12px;
|
|
bottom: var(--border-size);
|
|
right: 3px;
|
|
background-color: var(--color-danger);
|
|
border: var(--border-size) solid var(--color-gray-dark);
|
|
}
|
|
}
|
|
|
|
.arrowRight,
|
|
.arrowLeft {
|
|
position: absolute;
|
|
font-size: var(--arrow-size);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.arrowLeft {
|
|
width: var(--lg-padding-y);
|
|
left: var(--arrow-l-left);
|
|
[dir="rtl"] & {
|
|
right: var(--arrow-r-left);
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
.arrowRight {
|
|
width: var(--md-padding-x);
|
|
left: var(--arrow-r-left);
|
|
[dir="rtl"] & {
|
|
right: .5rem;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
margin: 0;
|
|
|
|
span {
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
span {
|
|
background-color: transparent !important;
|
|
color: var(--color-white) !important;
|
|
opacity: .75;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btnSettings {
|
|
}
|