blog_theme/assets/css/site/off-canvas.css

78 lines
1.2 KiB
CSS
Raw Normal View History

.dimmer {
2020-09-28 06:05:46 +03:00
position: fixed;
top: 0;
2020-10-19 04:07:40 +03:00
right: 0;
bottom: 0;
left: 0;
2020-09-28 06:05:46 +03:00
z-index: 90;
2020-10-19 04:07:40 +03:00
display: none;
background: rgba(0, 0, 0, 0.7);
}
2020-09-24 05:18:34 +03:00
.off-canvas {
2020-09-28 06:05:46 +03:00
position: fixed;
top: 0;
2020-10-19 04:07:40 +03:00
right: 0;
2020-09-28 06:05:46 +03:00
z-index: 90;
2020-10-19 04:07:40 +03:00
overflow-y: scroll;
padding: 60px 0 90px;
2020-10-19 04:07:40 +03:00
width: 320px;
height: 100vh;
background-color: var(--light-gray-color);
transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
transform: translateX(320px);
-webkit-overflow-scrolling: touch;
}
2020-09-24 05:18:34 +03:00
.off-canvas .burger {
2020-09-28 06:05:46 +03:00
position: absolute;
top: 15px;
2020-10-19 04:07:40 +03:00
right: 12px;
margin: 0;
}
2020-09-24 05:18:34 +03:00
.off-canvas .related-posts {
2020-09-28 06:05:46 +03:00
margin: 45px 0 30px;
padding: 0 20px;
}
2020-09-24 05:18:34 +03:00
.off-canvas .widget-area {
2020-09-28 06:05:46 +03:00
padding: 0 20px;
}
2020-09-24 05:18:34 +03:00
.off-canvas .widget {
2020-10-19 04:07:40 +03:00
padding: 0;
2020-09-28 06:05:46 +03:00
background-color: transparent;
box-shadow: none;
}
2020-09-24 05:18:34 +03:00
.off-canvas .widget + .widget {
2020-09-28 06:05:46 +03:00
margin-top: 45px;
}
2020-09-24 05:18:34 +03:00
body:not(.canvas-visible) .off-canvas {
2020-09-28 06:05:46 +03:00
visibility: hidden;
}
2020-09-24 05:18:34 +03:00
.canvas-opened {
2020-09-28 06:05:46 +03:00
overflow-y: hidden;
}
2020-09-24 05:18:34 +03:00
.canvas-opened .off-canvas {
2020-09-28 06:05:46 +03:00
visibility: visible;
2020-10-19 04:07:40 +03:00
transform: translateX(0);
}
2020-09-24 05:18:34 +03:00
.mobile-menu {
2020-09-28 06:05:46 +03:00
margin: 0 20px 45px;
}
2020-09-24 05:18:34 +03:00
.mobile-menu .nav-list {
2020-09-28 06:05:46 +03:00
display: block;
}
2020-09-24 05:18:34 +03:00
.mobile-menu .menu-item {
2020-09-28 06:05:46 +03:00
margin: 20px 0;
2020-10-19 04:07:40 +03:00
letter-spacing: 0;
}