Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Created page with "CSS placed here will be applied to all skins: Main Page Styles: .main-page-header { text-align: center; padding: 20px; background-color: #f9f9f9; border-bottom: 2px solid #e0e0e0; } .main-page-header h1 { font-size: 2.5em; margin: 0; } .main-page-header p { font-size: 1.2em; color: #666; } .main-page-sections { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 20px 0; } .main-page-section..."
 
No edit summary
Line 4: Line 4:
   text-align: center;
   text-align: center;
   padding: 20px;
   padding: 20px;
  background-color: #f9f9f9;
   border-bottom: 2px solid #e0e0e0;
   border-bottom: 2px solid #e0e0e0;
}
}
Line 15: Line 14:
.main-page-header p {
.main-page-header p {
   font-size: 1.2em;
   font-size: 1.2em;
  color: #666;
}
}


Line 27: Line 25:
.main-page-section {
.main-page-section {
   padding: 15px;
   padding: 15px;
  background-color: #ffffff;
   border: 1px solid #e0e0e0;
   border: 1px solid #e0e0e0;
   border-radius: 8px;
   border-radius: 8px;
Line 36: Line 33:
   font-size: 1.5em;
   font-size: 1.5em;
   margin-bottom: 10px;
   margin-bottom: 10px;
  color: #333;
}
}


Line 49: Line 45:


.main-page-section a {
.main-page-section a {
  color: #0073e6;
   text-decoration: none;
   text-decoration: none;
}
}
Line 61: Line 56:
   padding: 15px;
   padding: 15px;
   margin-top: 20px;
   margin-top: 20px;
  background-color: #f9f9f9;
   border-top: 2px solid #e0e0e0;
   border-top: 2px solid #e0e0e0;
}
}

Revision as of 14:41, 7 January 2025

/* CSS placed here will be applied to all skins */
/* Main Page Styles */
.main-page-header {
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.main-page-header h1 {
  font-size: 2.5em;
  margin: 0;
}

.main-page-header p {
  font-size: 1.2em;
}

.main-page-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.main-page-section {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-page-section h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.main-page-section ul {
  list-style: none;
  padding: 0;
}

.main-page-section li {
  margin-bottom: 8px;
}

.main-page-section a {
  text-decoration: none;
}

.main-page-section a:hover {
  text-decoration: underline;
}

.main-page-footer {
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  border-top: 2px solid #e0e0e0;
}