MediaWiki:Common.css/MainPage.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 12: Line 12:
   border: 2px solid #333 !important;
   border: 2px solid #333 !important;
   background-color: #c1c3ff !important;
   background-color: #c1c3ff !important;
  table-layout: fixed;
}
}


Line 29: Line 30:
   #logo {
   #logo {
     width: 80%;
     width: 80%;
  }
  table {
    display: block;
   }
   }
   td {
   td {
    width: 100%;
    box-sizing: border-box;
     padding: 10px !important;
     padding: 10px !important;
   }
   }
}
}

Revision as of 01:42, 7 October 2023

/* CSS placed here will be applied to all skins */

#logo {
  display: block;
  margin: 20px auto;
  width: 50%;
}

table {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 2px solid #333 !important;
  background-color: #c1c3ff !important;
  table-layout: fixed;
}

td {
  padding: 15px !important;
  text-align: center !important;
  border: 2px solid #333 !important;
  width: 50%;
  box-sizing: border-box;
}

.last-modified-bar {
  display: none !important;
}

@media (max-width: 768px) {
  #logo {
    width: 80%;
  }
  td {
    padding: 10px !important;
  }
}