Advertisement
connorblikre

media query

Aug 6th, 2014
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. // MOBILE MENU
  2.  
  3. .mobile-menu {
  4.     display: none;
  5.    
  6.     @media (min-width: @screen-md-min){ display: none !important; }
  7.  
  8.     .menu {
  9.         margin: 0;
  10.         padding: 0;
  11.         border-top: 1px solid darken(@nav-bg, 10%);
  12.  
  13.         li {
  14.             list-style-type: none;
  15.             border-top: 1px solid lighten(@nav-bg, 10%);
  16.             border-bottom: 1px solid darken(@nav-bg, 10%);
  17.             font-size: 17px;
  18.  
  19.             &:last-child { border-bottom: 0; }
  20.  
  21.             a {
  22.                 display: block;
  23.                 padding: 15px @grid-gutter-width/2;
  24.                 color: #fff;
  25.                 background-color: @nav-bg;
  26.                 font-family: @font-family-serif;
  27.             }
  28.  
  29.             &.current-menu-item > a,
  30.             a:hover, a:focus {
  31.                 background-color: darken(@nav-bg, 5%);
  32.             }
  33.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement