Vulcan/packages/nova-base-styles/lib/stylesheets/_header.scss

61 lines
843 B
SCSS
Raw Normal View History

2016-03-25 10:45:28 +09:00
.header-wrapper{
2016-03-25 11:30:01 +09:00
background: $header-bg;
2016-03-25 10:45:28 +09:00
margin-bottom: $vmargin;
2016-03-25 11:22:35 +09:00
}
.header{
@include flex-center;
justify-content: space-between;
padding: $vmargin 0;
}
.logo{
display: flex;
align-items: baseline;
.logo-text{
margin-right: $hmargin;
}
.logo-image{
margin-right: $hmargin;
}
.tagline{
font-size: 1.35rem;
}
}
.nav{
@include flex-center;
.nav-user{
margin-right: $hmargin;
}
.nav-new-post{
}
2016-03-25 12:42:25 +09:00
}
.user-menu-dropdown{
.dropdown-toggle{
@include flex-center;
padding: 0;
background: none;
img{
margin-right: 5px;
}
}
}
.accounts-ui{
padding: $vmargin;
min-width: 240px;
.buttons{
.btn{
display: block;
width: 100%;
text-align: center;
margin-bottom: $vmargin;
&:last-child{
margin-bottom: 0;
}
}
}
2016-03-25 10:45:28 +09:00
}