Ghost/core/client/assets/sass/components/navigation.scss

129 lines
2.5 KiB
SCSS
Raw Normal View History

//
// Global Navigation
// --------------------------------------------------
// The main wrapper, sets position and bg colour.
2014-07-29 01:21:02 +04:00
.global-nav {
height: 60px;
@include position(fixed, 0px 0px auto 0px);
z-index: 9999;
background: $darkgrey;
}
2014-07-29 01:21:02 +04:00
// Wrapper for each item
.nav-item {
position: relative;
display: block;
float: left;
2014-07-29 02:34:34 +04:00
height: 60px;
padding-right: 10px;
font-size: 1.1rem;
letter-spacing: 1px;
font-weight: 200;
line-height: 1.1em;
}
2014-07-29 01:21:02 +04:00
// Pill shaped background
.nav-label {
2014-07-29 02:34:34 +04:00
height: 33px;
margin-top: 14px;
padding: 10px 12px;
color: rgba(255,255,255,0.7);
text-transform: uppercase;
border-radius: 4px;
2014-07-29 02:34:34 +04:00
@include transition(all 0.5s);
}
2014-07-29 02:34:34 +04:00
.nav-item.active .nav-label,
.nav-item:hover .nav-label {
2014-07-29 02:34:34 +04:00
color: rgba(255,255,255,0.9);
background: darken($darkgrey, 7%);
@include transition(all 0.1s);
}
2014-07-29 01:21:02 +04:00
// Ghost branding
.ghost-logo {
2014-07-29 01:21:02 +04:00
@include icon($i-ghost, 14px) { line-height: 0; }
display: inline-block;
float: left;
height: 60px;
width: 60px;
2014-07-29 01:21:02 +04:00
padding: 23px;
color: lighten($grey, 20%);
2014-07-29 01:21:02 +04:00
font-size: 1.5rem;
2014-07-29 02:34:34 +04:00
line-height: 1em;
2014-07-29 01:21:02 +04:00
@include transition(color 0.5s);
}
.ghost-logo:hover,
.ghost-logo:focus {
color: $lightgrey;
2014-07-29 01:21:02 +04:00
@include transition(color 0.1s);
}
2014-07-29 01:21:02 +04:00
// Right hand dropdown
.user-menu {
position: absolute;
top: 0;
right: 0;
padding: 0;
margin: 0;
2014-07-29 02:34:34 +04:00
cursor: pointer;
.nav-label {
margin: 0;
padding: 0 12px;
background: none !important;
}
2014-07-29 01:21:02 +04:00
// Profile picture
.image {
2014-07-29 01:21:02 +04:00
float: left;
2014-07-29 02:34:34 +04:00
margin: 14px 7px 0 0;
img {
display: block;
width: 32px;
height: 32px;
border-radius: 100%;
}
}
2014-07-29 01:21:02 +04:00
// Descriptive label for mobile menu
.name {
2014-07-29 02:34:34 +04:00
float: right;
height: 33px;
margin-top: 14px;
padding: 10px 12px;
border-radius: 4px;
@include transition(background 0.5s);
2014-07-29 01:21:02 +04:00
small {
2014-07-29 02:34:34 +04:00
display: none; // hide until mobile
2014-07-29 01:21:02 +04:00
font-size: 12px;
color: #cacaca;
margin-top: 0;
line-height: 19px;
}
}
2014-07-29 02:34:34 +04:00
&:hover .name {
color: rgba(255,255,255,0.9);
background: darken($darkgrey, 7%);
@include transition(background 0.1s);
}
}//.user-menu
/* mobile styles
.name {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
line-height: 19px;
padding-bottom: 5px;
small {
display: block;
}
}
*/