0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/assets/sass/modules/navs.scss

42 lines
805 B
SCSS
Raw Normal View History

/*
* Navigation Menus
*
* Table of Contents
*
* Nav
*/
/* ==========================================================================
Nav
========================================================================== */
2014-03-11 18:23:42 -05:00
nav {
ul {
list-style: none;
margin: 0;
padding: 0;
border-top: $lightbrown 1px solid;
2014-03-11 18:23:42 -05:00
}
li {
2014-03-11 18:23:42 -05:00
a {
display: block;
padding: 10px 15px;
color: $brown;
border-bottom: $lightbrown 1px solid;
2014-03-11 18:23:42 -05:00
2014-07-12 06:12:43 -05:00
&:hover,
&:focus {
color: $darkgrey;
2014-03-11 18:23:42 -05:00
background: $lightbrown;
text-decoration: none;
}
&:before {
margin-right: 1em;
} // Make space for icons
2014-03-11 18:23:42 -05:00
}
}
}