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

MediaWiki interface page
No edit summary
No edit summary
Line 8: Line 8:


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


td {
td {
   padding: 15px !important;
   padding: 15px;
   text-align: center !important;
   text-align: center;
   border: 2px solid #333 !important;
   border: 2px solid #333;
  width: 50%;
   box-sizing: border-box;
   box-sizing: border-box;
   word-wrap: break-word;
   width: 25%;
  white-space: nowrap;
}
}


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


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

Revision as of 01:47, 7 October 2023

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

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

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

td {
  padding: 15px;
  text-align: center;
  border: 2px solid #333;
  box-sizing: border-box;
  width: 25%;
  white-space: nowrap;
}

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

@media (max-width: 768px) {
  td {
    padding: 10px;
  }
}