2020-09-02 02:46:13 +08:00
|
|
|
@import "../../stylesheets/variables/breakpoints";
|
2016-05-21 00:29:55 +08:00
|
|
|
|
2019-11-23 06:25:05 +08:00
|
|
|
:root {
|
2019-11-29 23:19:48 +08:00
|
|
|
--mobile-nav-height: 5rem;
|
2019-12-05 03:48:06 +08:00
|
|
|
--mobile-margin-top: .25rem;
|
2020-04-29 00:43:14 +08:00
|
|
|
--arrow-l-left: 1.1rem;
|
|
|
|
--arrow-r-left: 2.5rem;
|
|
|
|
--arrow-size: 40%;
|
2019-11-23 06:25:05 +08:00
|
|
|
}
|
|
|
|
|
2016-05-21 00:29:55 +08:00
|
|
|
.navbar {
|
2019-11-15 02:47:27 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top,
|
|
|
|
.bottom {
|
2016-05-21 00:29:55 +08:00
|
|
|
display: flex;
|
2016-07-28 05:50:35 +08:00
|
|
|
flex-direction: row;
|
2016-05-21 00:29:55 +08:00
|
|
|
}
|
|
|
|
|
2019-11-29 23:19:48 +08:00
|
|
|
.bottom {
|
|
|
|
@include mq($phone-landscape) {
|
2019-12-05 03:48:06 +08:00
|
|
|
margin-top: var(--mobile-margin-top);
|
2019-11-29 23:19:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-21 00:29:55 +08:00
|
|
|
.left,
|
|
|
|
.right,
|
2016-12-06 04:09:03 +08:00
|
|
|
.center {
|
2016-05-21 00:29:55 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2016-12-06 04:09:03 +08:00
|
|
|
.right {
|
2016-05-21 00:29:55 +08:00
|
|
|
flex: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
2018-10-19 04:37:14 +08:00
|
|
|
width: 70%;
|
2016-07-28 05:50:35 +08:00
|
|
|
flex: 1;
|
2016-05-21 00:29:55 +08:00
|
|
|
}
|
|
|
|
|
2016-07-28 05:50:35 +08:00
|
|
|
.presentationTitle {
|
2016-05-21 00:29:55 +08:00
|
|
|
font-weight: 200;
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-white);
|
|
|
|
font-size: var(--font-size-base);
|
2016-05-21 00:29:55 +08:00
|
|
|
margin: 0;
|
2016-07-28 05:50:35 +08:00
|
|
|
padding: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-08-24 01:29:28 +08:00
|
|
|
max-width: 30vw;
|
2018-10-19 04:37:14 +08:00
|
|
|
|
2016-12-06 03:26:08 +08:00
|
|
|
> [class^="icon-bbb-"] {
|
|
|
|
font-size: 75%;
|
|
|
|
}
|
2016-07-28 05:50:35 +08:00
|
|
|
}
|
2016-06-07 22:33:22 +08:00
|
|
|
|
2016-12-06 02:54:20 +08:00
|
|
|
.btnWithNotificationDot {
|
2016-10-12 01:36:28 +08:00
|
|
|
position: relative;
|
2016-12-06 02:54:20 +08:00
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 50%;
|
2017-09-29 03:18:04 +08:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2018-10-19 04:37:14 +08:00
|
|
|
bottom: var(--border-size);
|
2017-09-29 03:18:04 +08:00
|
|
|
right: 3px;
|
2018-10-19 04:37:14 +08:00
|
|
|
background-color: var(--color-danger);
|
|
|
|
border: var(--border-size) solid var(--color-gray-dark);
|
2016-12-06 02:54:20 +08:00
|
|
|
}
|
2016-10-12 01:36:28 +08:00
|
|
|
}
|
|
|
|
|
2020-04-29 00:43:14 +08:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 02:58:40 +08:00
|
|
|
.btn {
|
2016-12-06 03:16:52 +08:00
|
|
|
margin: 0;
|
2016-12-06 02:58:40 +08:00
|
|
|
|
2016-10-05 03:23:43 +08:00
|
|
|
span {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2016-12-06 21:39:48 +08:00
|
|
|
|
2020-11-10 06:40:25 +08:00
|
|
|
z-index: 3;
|
|
|
|
|
2016-12-06 21:39:48 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
span {
|
|
|
|
background-color: transparent !important;
|
2018-10-19 04:37:14 +08:00
|
|
|
color: var(--color-white) !important;
|
2016-12-06 21:39:48 +08:00
|
|
|
opacity: .75;
|
|
|
|
}
|
|
|
|
}
|
2016-10-05 03:23:43 +08:00
|
|
|
}
|
|
|
|
|
2016-12-06 03:16:52 +08:00
|
|
|
.btnSettings {
|
2016-11-07 23:52:39 +08:00
|
|
|
}
|