Advertisement
Udoro

Pro menu to accordion on mobile - CSS

Jun 11th, 2022
1,598
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.43 KB | None | 0 0
  1.  
  2. #footer .sub-menu{
  3.  
  4.     background-color: transparent;
  5. }
  6.  
  7.  
  8.  
  9.  
  10. @media (min-width: 768px){
  11.  
  12.     #footer .sub-menu{
  13.         visibility: visible;
  14.         position: static;
  15.         margin-left: 0.5rem;
  16.  
  17.     }
  18.  
  19.     #footer .menu-item{
  20.         display: initial;
  21.     }
  22.  
  23.  
  24.     #footer .oxy-pro-menu-dropdown-icon{
  25.         display: none;
  26.     }
  27.  
  28.     #footer .oxy-pro-menu-list{
  29.         align-items: flex-start;
  30.     }
  31.  
  32.     #footer .footer-menu-title > a{
  33.         font-weight: 700;
  34.         text-transform: uppercase;
  35.         margin-bottom: 0.5rem;
  36.         pointer-events: none;
  37.  
  38.     }
  39.     #footer .menu-footer-menu-container{
  40.         width: 100%
  41.     }
  42.  
  43.  
  44.  
  45.     #footer .oxy-pro-menu-container .sub-menu{
  46.         display: flex !important;
  47.     }
  48.  
  49.  
  50.  
  51.  
  52.  
  53. }
  54.  
  55.  
  56.  
  57.  
  58. @media (max-width: 767px){
  59.    
  60.     #footer .oxy-pro-menu-mobile-close-icon{
  61.         display:none;
  62.     }
  63.  
  64.     #footer .menu-footer-menu-container{
  65.         width: 100%
  66.     }
  67.  
  68.     #footer .menu-item-object-custom > a div {
  69.         margin-left: auto;
  70.     }
  71.  
  72.  
  73.     #footer .oxy-pro-menu-container{
  74.  
  75.         position: initial;
  76.     }
  77.  
  78.     #footer .sub-menu{
  79.    
  80.         padding: 1rem 2rem;
  81.     }
  82.  
  83.     #footer .oxy-pro-menu-dropdown-icon-click-area {
  84.  
  85.         touch-action: none;
  86.         pointer-events: none;
  87.     }
  88.  
  89.     #footer .footer-menu-title{
  90.         margin-bottom: 1rem;
  91.        
  92.  
  93.     }
  94.  
  95.  
  96.     #footer .oxy-pro-menu .oxy-pro-menu-container.oxy-pro-menu-open-container{
  97.         background-color: transparent;
  98.     }
  99.  
  100.  
  101.     #footer .footer-menu-title > a{
  102.         padding: .4rem 1rem;       
  103.         font-weight: 700;
  104.         text-transform: uppercase;
  105.         background: #e8f1ff;
  106.  
  107.     }
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement