1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00
الملفات
postal/app/assets/stylesheets/application/components/_nav_bar.scss
2017-04-19 13:07:25 +01:00

64 أسطر
969 B
SCSS

.navBar {
background:$veryDarkBlue;
padding:10px 35px;
color:#fff;
ul {
display:flex;
}
}
.navBar--secondary {
background:lighten($veryDarkBlue, 44%);
.navBar__link.is-active {
color:$veryDarkBlue;
}
}
.navBar--tertiary {
background:#fff;
border:1px solid lighten($subBlue, 30%);
border-left:0;
border-right:0;
.navBar__link {
color:$subBlue;
}
.navBar__link.is-active {
color:$veryDarkBlue;
}
}
.navBar__item:not(:last-child) {
margin-right:35px;
}
.navBar__link.is-active {
color:#8abdff;
font-weight:600;
}
.navBar__item--end {
margin-left:auto;
}
.navBar__link:hover {
text-decoration:underline;
}
.navBar__itemCounter {
background:$red;
border-radius:4px;
padding:2px 2px 1px 2px;
line-height:1;
font-size:10px;
vertical-align:1px;
font-weight:300;
min-width:20px;
display:inline-block;
text-align:center;
margin-left:5px;
&.is-empty {
background-color:$darkBlue;
}
}