1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .wp-block-srh-offcanvas-menu {
- position: relative;
- }
- .hamburger-toggle {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- width: 30px;
- height: 20px;
- background: none;
- border: none;
- padding: 0;
- cursor: pointer;
- }
- .hamburger-toggle span {
- display: block;
- width: 100%;
- height: 2px;
- background-color: #ffffff;
- transition: all 0.3s ease;
- }
- .hamburger-toggle.is-active span:nth-child(1) {
- transform: translateY(9px) rotate(45deg);
- }
- .hamburger-toggle.is-active span:nth-child(2) {
- opacity: 0;
- }
- .hamburger-toggle.is-active span:nth-child(3) {
- transform: translateY(-9px) rotate(-45deg);
- }
- .offcanvas-menu {
- position: fixed;
- top: 0;
- right: -300px;
- width: 300px;
- height: 100vh;
- background-color: #fff;
- box-shadow: -2px 0 5px rgba(0,0,0,0.1);
- transition: right 0.3s ease;
- z-index: 1000;
- }
- .offcanvas-menu.is-active {
- right: 0;
- }
- .offcanvas-menu-inner {
- padding: 20px;
- }
- body.offcanvas-active {
- overflow: hidden;
- }
|