PaleoCrafter

Untitled

Sep 18th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1.  
  2. @media screen and (max-width: 1080px) {
  3.   .logo {
  4.     width: 100%;
  5.     text-align: center;
  6.   }
  7.  
  8.   body.sidebar-active {
  9.     position: fixed;
  10.     width: 100%;
  11.   }
  12.  
  13.   .open-sidebar {
  14.     display: block;
  15.     float: left;
  16.     font-size: 2rem;
  17.   }
  18.  
  19.   .close-sidebar {
  20.     display: inline;
  21.     color: $pagination-color;
  22.     font-size: 1.5rem;
  23.     margin-right: 0.5rem;
  24.  
  25.     &:hover, &:active {
  26.       color: darken($pagination-color, 5%);
  27.     }
  28.   }
  29.  
  30.   .aside-wrapper {
  31.     transform: translateX(-100%);
  32.     position: fixed;
  33.     top: 0;
  34.     left: 0;
  35.     z-index: 10000;
  36.     width: 100%;
  37.     height: 100%;
  38.     transition: transform 0.75s ease-in-out;
  39.  
  40.     &.active-sidebar {
  41.       transform: translateX(0);
  42.     }
  43.  
  44.     aside, section {
  45.       height: 100%;
  46.       box-shadow: none;
  47.     }
  48.  
  49.     section.sidebar-nav > ul {
  50.       max-height: calc(100% - 42px);
  51.     }
  52.  
  53.     section {
  54.       &, h2, .heading {
  55.         border-radius: 0;
  56.       }
  57.  
  58.       h2, .heading {
  59.         display: flex;
  60.         align-items: center;
  61.       }
  62.     }
  63.   }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment