zeus.ugent.be/content/assets/stylesheets/includes/navbar.scss

57 lines
944 B
SCSS
Raw Normal View History

#navbar {
align-items: flex-end;
z-index: 100;
margin-bottom: 10px;
.logo-wrapper {
padding-bottom: 0;
2016-12-24 15:37:44 +00:00
position: relative;
#santa {
position: absolute;
2017-12-11 18:02:49 +00:00
z-index: 300;
left: 5px;
2017-12-16 17:35:24 +00:00
bottom: 0;
2017-12-11 18:02:49 +00:00
width: 60px;
2016-12-24 15:37:44 +00:00
}
}
2018-04-14 22:56:35 +00:00
.navbar:not(.is-transparent) #logo-link {
2018-04-14 21:33:56 +00:00
@include desktop {
width: 124px;
border-bottom: 2px solid $body-background;
margin-bottom: -2px;
}
#logo {
2018-04-14 21:33:56 +00:00
@include desktop {
max-width: none;
max-height: none;
left: 0;
bottom: 5px;
width: 100px;
position: absolute;
}
}
}
2016-12-15 08:49:37 +00:00
2018-04-14 21:33:56 +00:00
.navbar-item {
font-variant: small-caps;
font-size: 1.15em;
}
2018-04-14 21:33:56 +00:00
.navbar:not(.is-transparent) {
.navbar-item {
&:not(.is-active) {
color: #7a7a7a;
}
2018-04-14 21:33:56 +00:00
&.is-active {
color: $primary;
border-bottom: 2px solid;
margin-bottom: -2px;
}
}
}
2016-12-24 15:37:44 +00:00
}