Changes

382 bytes added ,  05:11, 21 November 2020
no edit summary
Line 376: Line 376:  
  /* Media Resize Rules  */
 
  /* Media Resize Rules  */
 
/***********************/
 
/***********************/
 +
/*Removes edit timestamp*/
 
@media only screen and (max-width: 1020px) {
 
@media only screen and (max-width: 1020px) {
 
     #footer-info li {
 
     #footer-info li {
Line 382: Line 383:  
   }
 
   }
 
}
 
}
 +
/*Removes redundant page button*/
 
@media only screen and (max-width: 702px) {
 
@media only screen and (max-width: 702px) {
 
     .vector-menu-tabs .selected {
 
     .vector-menu-tabs .selected {
 
     display: none;
 
     display: none;
    +
  }
 +
}
 +
/*Removes side bar*/
 +
@media only screen and (max-width: 583px) {
 +
    #mw-panel .portal-first {
 +
    display: none;
 +
  }
 +
.portal, .vector-menu-portal {
 +
    display: none;
 +
  }
 +
.mw-body {
 +
    margin-right: 0;
 +
    margin-left: 0;
 +
  }
 +
#left-navigation {
 +
    margin-left: 0;
 +
  }
 +
#right-navigation {
 +
    margin-right: -3em;
 
   }
 
   }
 
}
 
}