Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- nav ul {
- list-style-type: none;
- padding: 0; margin: 0;
- text-align: right;
- li{
- display: inline-block;
- margin: 0;
- position: relative !important;
- font-size: 70%;
- margin-left: 10px;
- &.current-menu-item a{
- font-weight: bold;
- }
- a {
- color: #fff;
- text-decoration: none;
- font-weight: normal;
- position: relative !important;
- &:hover{
- color: #CCC;
- }
- }
- .sub-menu {
- position: absolute;
- display: none;
- width: 180px;
- z-index: 500;
- top: 25px;
- li{
- list-style: none;
- padding: 0;
- margin: 0;
- width: 100%;
- a{
- width: 100%;
- padding: 5px 0 5px 10px;
- display: block;
- border-bottom: 1px solid #d4cdec;
- background-color: @subnav;
- text-decoration: none;
- font-size: 140%;
- color: #e6e6e6;
- border-radius: 5px;
- text-align: left !important;
- margin: 0;
- .current-menu-item, &:hover{
- background-color: lighten(@subnav, 40%);
- }
- }
- .current_page_item a{
- background-color: lighten(@subnav, 40%);
- }
- }
- &:first-child{
- }
- }
- }
- li:hover {
- .sub-menu {
- display: block;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement