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

MediaWiki interface page
No edit summary
No edit summary
Line 5: Line 5:
   margin: 0 auto;
   margin: 0 auto;
   width: 50%;
   width: 50%;
   max-width: 300px;
   max-width: 300px !important;
}
}


table {
table {
   width: 100%;
   width: 100% !important;
   border-collapse: collapse;
   border-collapse: collapse !important;
   background-color: #f5f5f5;
  border: 1px solid #333 !important;
   background-color: #333 !important;
}
}


td {
td {
   padding: 15px;
   padding: 15px !important;
   text-align: center;
   text-align: center !important;
   border: 1px solid #ddd;
   border: 1px solid #333 !important;
  border-radius: 5px;
  background-color: #c98ed7;
  color: #fff;
}
}


.last-modified-bar {
.last-modified-bar {
   display: none;
   display: none !important;
}
 
@media (max-width: 768px) {
  #logo {
    width: 80%;
  }
 
  td {
    padding: 10px;
    border-radius: 5px;
    background-color: #c98ed7;
    margin-bottom: 10px;
  }
}
}

Revision as of 01:25, 7 October 2023

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

#logo {
  display: block;
  margin: 0 auto;
  width: 50%;
  max-width: 300px !important;
}

table {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 1px solid #333 !important;
  background-color: #333 !important;
}

td {
  padding: 15px !important;
  text-align: center !important;
  border: 1px solid #333 !important;
}

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