75 lines
1.9 KiB
SCSS
75 lines
1.9 KiB
SCSS
.page-sidebar-closed {
|
|
.onboarding-navbar.displayed {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.onboarding-navbar {
|
|
display: none;
|
|
}
|
|
|
|
.onboarding-navbar.displayed {
|
|
display: block;
|
|
font-weight: normal;
|
|
box-sizing: border-box;
|
|
width: $size-navbar-width;
|
|
padding: rem(10px);
|
|
padding-bottom: rem(35px); // Forced because of old theme
|
|
background: $navbar-footer-color;
|
|
position: fixed;
|
|
bottom: 0;
|
|
font-size: rem(11px);
|
|
text-align: center;
|
|
|
|
> .text {
|
|
text-align: left;
|
|
color: $navbar-text-color;
|
|
padding-bottom: rem(10px);
|
|
}
|
|
|
|
.onboarding-button-resume { // Forced because of old theme
|
|
background: #1e2024;
|
|
color: #95a7ad;
|
|
}
|
|
|
|
.btn {
|
|
background: $navbar-progress-secondary-color;
|
|
color: $navbar-text-color;
|
|
text-transform: uppercase; // Forced because of old theme
|
|
margin: 0 auto;
|
|
font-size: rem(10px);
|
|
padding: rem(6px) rem(15px);
|
|
&:hover { // Forced because of old theme
|
|
color: #95a7ad !important; // Forced because of old theme
|
|
}
|
|
}
|
|
.btn.-small {
|
|
margin-top: rem(2px);
|
|
font-size: rem(8px);
|
|
padding: rem(4px);
|
|
text-transform: none;
|
|
background: $navbar-footer-color;
|
|
font-size: rem(10px) !important; // Forced because of old theme
|
|
text-transform: none; // Forced because of old theme
|
|
color: #95a7ad !important; // Forced because of old theme
|
|
&:hover { // Forced because of old theme
|
|
color: #95a7ad !important;; // Forced because of old theme
|
|
text-decoration: underline; // Forced because of old theme
|
|
}
|
|
}
|
|
> .btn.-small:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
> .progress {
|
|
border-radius: $navbar-progress-size;
|
|
height: $navbar-progress-size;
|
|
background: $navbar-progress-secondary-color;
|
|
}
|
|
> .progress > .bar {
|
|
border-radius: $navbar-progress-size;
|
|
background: $navbar-progress-primary-color;
|
|
height: $navbar-progress-size;
|
|
}
|
|
}
|