Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @media screen and (max-width: 1080px) {
- .logo {
- width: 100%;
- text-align: center;
- }
- body.sidebar-active {
- position: fixed;
- width: 100%;
- }
- .open-sidebar {
- display: block;
- float: left;
- font-size: 2rem;
- }
- .close-sidebar {
- display: inline;
- color: $pagination-color;
- font-size: 1.5rem;
- margin-right: 0.5rem;
- &:hover, &:active {
- color: darken($pagination-color, 5%);
- }
- }
- .aside-wrapper {
- transform: translateX(-100%);
- position: fixed;
- top: 0;
- left: 0;
- z-index: 10000;
- width: 100%;
- height: 100%;
- transition: transform 0.75s ease-in-out;
- &.active-sidebar {
- transform: translateX(0);
- }
- aside, section {
- height: 100%;
- box-shadow: none;
- }
- section.sidebar-nav > ul {
- max-height: calc(100% - 42px);
- }
- section {
- &, h2, .heading {
- border-radius: 0;
- }
- h2, .heading {
- display: flex;
- align-items: center;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment