2026-02-05 17:08:59 +03:00

200 lines
5.2 KiB
CSS

/*
Semantic UI Hamburger Menu (not oficial)
I understand why Semantic UI creators doesn't want to add more responsive debt to core project. I respect the nature of Semantic UI project because I love what these guys created there. But I need a Hamburger Menu. Maybe you too.
By @betoayesa.
**This file include some responsive helper clases from https://github.com/Semantic-Org/Semantic-UI/issues/1114
*/
/* Hamburger Clases Implemented for Mobile Only. Up to you to add it for other breakpoints */
/* Hamburger hidden by default */
.hamburger {
display:none
}
/* Mobile */
@media only screen and (max-width: 1100px) {
[class*="mobile hidden"],
[class*="tablet only"]:not(.mobile),
[class*="computer only"]:not(.mobile),
[class*="large screen only"]:not(.mobile),
[class*="widescreen only"]:not(.mobile),
[class*="or lower hidden"] {
display: none !important;
}
.hamburger {
width: 30px;
height: 30px;
position: relative;
margin: 10px auto 0 auto;
cursor: pointer;
display: block;
}
.hamburger span {
display: block;
height: 3px;
background: #fff;
margin: 0 0 3px;
}
.hamburger:hover {
-moz-opacity: 1;
-khtml-opacity: 1;
-webkit-opacity: 1;
opacity: 1;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
filter: alpha(opacity=100);
-moz-transition-duration: .2s;
-webkit-transition-duration: .2s;
-o-transition-duration: .2s;
transition-duration: .2s;
}
.hamburger.active {
}
.hamburger.active .hamburger-bun {
margin: 0;
-webkit-transform-origin: center center;
-moz-transform-origin: center center;
-o-transform-origin: center center;
transform-origin: center center;
}
.hamburger.active .hamburger-bun:first-child {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-ms-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease;
margin-top: 3px;
}
.hamburger.active .hamburger-bun:last-child {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-ms-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease;
margin-top: -3px;
}
.hamburger.active .hamburger-patty {
display: none;
}
#mainwp-main-menu .item:not(.header){
display:none;
}
#mainwp-main-menu.open .item{
display:block;
}
#mainwp-main-menu.open {
height:inherit
}
#mainwp-main-menu.open {
height:inherit
}
.mainwp-nav-menu #mainwp-main-menu .item-wp-admin{
position: inherit !important;
}
#mainwp-top-header {
position: inherit !important;
}
}
/* Tablet / iPad Portrait */
@media only screen and (min-width: 768px) and (max-width: 991px) {
[class*="mobile only"]:not(.tablet),
[class*="tablet hidden"],
[class*="computer only"]:not(.tablet),
[class*="large screen only"]:not(.tablet),
[class*="widescreen only"]:not(.tablet),
[class*="or lower hidden"]:not(.mobile) {
display: none !important;
}
}
/* Computer / Desktop / iPad Landscape */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
[class*="mobile only"]:not(.computer),
[class*="tablet only"]:not(.computer),
[class*="computer hidden"],
[class*="large screen only"]:not(.computer),
[class*="widescreen only"]:not(.computer),
[class*="or lower hidden"]:not(.tablet):not(.mobile) {
display: none !important;
}
}
/* Large Monitor */
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
[class*="mobile only"]:not([class*="large screen"]),
[class*="tablet only"]:not([class*="large screen"]),
[class*="computer only"]:not([class*="large screen"]),
[class*="large screen hidden"],
[class*="widescreen only"]:not([class*="large screen"]),
[class*="or lower hidden"]:not(.computer):not(.tablet):not(.mobile) {
display: none !important;
}
}
/* Widescreen Monitor */
@media only screen and (min-width: 1920px) {
[class*="mobile only"]:not([class*="widescreen"]),
[class*="tablet only"]:not([class*="widescreen"]),
[class*="computer only"]:not([class*="widescreen"]),
[class*="large screen only"]:not([class*="widescreen"]),
[class*="widescreen hidden"],
[class*="widescreen or lower hidden"] {
display: none !important;
}
}
/* Fix inverted menu dropdowns */
.ui.menu.inverted .ui.dropdown .menu.inverted>.item{
background: #1c1d1b;
color:white;
}
.ui.menu.inverted .dropdown.item .menu {
background: #1c1d1b;
color:white;
}
.ui.menu.inverted .ui.dropdown .menu>.item:hover {
color: rgba(0,0,0,.05)!important;
cursor:pointer;
cursor:'hand';
background: rgba(0,0,0,.95)!important;
}