Guest User

Untitled

a guest
Nov 22nd, 2025
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.00 KB | Software | 0 0
  1. /*==================================
  2.   TAB STYLES
  3. ==================================*/
  4. /* Service group - 60% width */
  5. #layout-groups > .services-group:has([id="col-60"]) {
  6.     max-width: 60% !important;
  7. }
  8.  
  9. /* Service group - 40% width */
  10. #layout-groups > .services-group:has([id="col-40"]) {
  11.     max-width: 40% !important;
  12. }
  13.  
  14. /* Hide footer completely */
  15. #footer {
  16.     display: block;
  17. }
  18.  
  19. @media screen and (min-width: 1081px) {
  20.     button[id$='-tab'] {
  21.       text-align: left;
  22.       padding-left: 5px;
  23.       font-weight: bold;
  24.       font-size: 14px;
  25.     }
  26.    
  27.     #myTab {
  28.         display: inline;
  29.         position: fixed;
  30.         width: 210px;
  31.         top: 125px;
  32.         border: 1px solid rgba(224, 224, 224, 0.25);
  33.     }
  34.    
  35.     /* Bookmark section container */
  36.     .bookmark-group {
  37.         width: 210px;
  38.         position: absolute;
  39.         top: 310px;
  40.         left: -210px;
  41.     }
  42.    
  43.     /* Layout container */
  44.     #layout-groups {
  45.         position: absolute; top: 120px; left: 220px;
  46.     }
  47.    
  48.     #layout-groups > .services-group:has([id="sidebar"]) {
  49.         position: absolute;
  50.         top: 160px;
  51.         left: -220px;
  52.         width: 220px;
  53.     }
  54. }    
  55.  
  56. /* Vertical Screen style */
  57. @media screen and (min-width: 601px) and (max-width: 1080px) {
  58.     button[id$='-tab'] {
  59.       text-align: left;
  60.       padding-left: 5px;
  61.       font-weight: bold;
  62.       font-size: 14px;
  63.     }
  64.  
  65.     #myTab {
  66.         display: inline;
  67.         position: fixed;
  68.         width: 210px;
  69.         top: 155px;
  70.         border: 1px solid rgba(224, 224, 224, 0.25);
  71.     }
  72.  
  73.     .bookmark-group {
  74.       width: 210px;
  75.       position: absolute;
  76.       top: 340px;
  77.       left: -210px;
  78.     }
  79.    
  80.     #layout-groups {
  81.         position: absolute; top: 150px; left: 220px;
  82.     }
  83.    
  84.     #layout-groups > .services-group:has([id="sidebar"]) {
  85.       position: absolute;
  86.       top: 160px;
  87.       left: -220px;
  88.       width: 220px;
  89.     }
  90. }
  91.  
  92. @media screen and (max-width: 600px) {
  93.  
  94. }
Advertisement
Add Comment
Please, Sign In to add comment