polyglot/app/assets/stylesheets/components/_navbar.scss

60 lines
985 B
SCSS
Raw Normal View History

2018-08-28 10:18:23 +00:00
.polyglot-navbar {
display: flex;
align-items: center;
justify-content: space-between;
2018-08-28 10:18:23 +00:00
width: 100vw;
height: 3.5em;
background: $navbar-background;
2018-08-28 10:18:23 +00:00
.logo {
color: $primary;
margin-left: 1em;
2018-08-28 10:18:23 +00:00
font-size: 2em;
font-weight: bold;
}
2018-08-28 10:18:23 +00:00
.right-align {
height: 100%;
width: 16em;
margin-right: 5em;
display: flex;
align-items: center;
justify-content: space-between;
.links {
display: flex;
height: inherit;
div {
height: inherit;
display: flex;
align-items: center;
border-bottom: 5px solid transparent;
2018-08-28 10:18:23 +00:00
&:first-child {
margin-right: 1em;
}
2018-08-28 10:18:23 +00:00
&.active {
border-bottom: 5px solid $primary;
color: white;
a {
color: white;
}
}
a {
color: #C4C4C4;
text-decoration: none;
}
}
}
}
.profile {
img {
width: 3.25em;
}
}
}