MediaWiki:Common.css: Difference between revisions

From UN-NAMED SHOW wiki
No edit summary
No edit summary
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* General Skin Styles - Applied globally */
/* Header Styles */
/* Header Styles */
.main-page-header {
.main-page-header {
Line 25: Line 25:
     margin: -10px -10px 10px -10px;
     margin: -10px -10px 10px -10px;
     border-radius: 5px 5px 0 0;
     border-radius: 5px 5px 0 0;
}
.quasar-entry-infobox {
  background-color: #131A3F; /* Background color */
  border: 2px solid #01FFF6; /* Border color */
  padding: 10px;
  width: 300px;
  color: #FFFFFF; /* Text color */
  font-family: "Courier New", Courier, monospace;
}
.quasar-entry-header {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.quasar-entry-image {
  text-align: center;
  margin-bottom: 10px;
}
.quasar-entry-status {
  font-size: 16px;
}
}


Line 43: Line 67:
     border-radius: 3px;
     border-radius: 3px;
}
}
/* Infobox Styles */
.infobox {
.infobox {
     float: right;
     float: right;
Line 50: Line 76:
     padding: 5px;
     padding: 5px;
     margin: 0 0 1em 1em;
     margin: 0 0 1em 1em;
     font-family: 'dreamnight', sans-serif;
     font-family: Arial, sans-serif;
     font-size: 90%;
     font-size: 90%;
}
}
/* Start of QuasarDocs theme */
/* Banner stuff :D */
 
.alert-banner {
/* Base background and text colors for QuasarDocs pages */
     background-color: #01FFF6;
.QuasarDocs body, .QuasarDocs #content {
     color: #ffffff;          
    background-color: #f7f7f7;
     padding: 15px;
    color: #2e2e2e;
     text-align: center;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.6em;
}
 
/* Header styles for QuasarDocs pages */
.QuasarDocs #firstHeading {
    font-size: 1.8em;
    color: #111;
    border-bottom: 2px solid #111;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
 
/* Infobox styles for QuasarDocs pages */
.QuasarDocs .infobox {
     background-color: #f2f2f2;
     border: 1px solid #ccc;
     padding: 5px;
     width: 250px;
    float: right;
    margin-left: 10px;
}
 
.QuasarDocs .infobox th, .QuasarDocs .infobox td {
    border: none;
    padding: 5px;
}
 
.QuasarDocs .infobox th {
    background-color: #333;
    color: #fff;
     font-weight: bold;
     font-weight: bold;
     text-align: left;
     font-size: 1.2em;
    border: 5px solid #131A3F;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
}


/* Table styles for QuasarDocs pages */
.alert-banner .alert-icon {
.QuasarDocs table {
    width: 30px; /* Adjust the size of the image */
     border-collapse: collapse;
     height: 30px;
     width: 100%;
     margin-right: 10px; /* Space between the image and the text */
}
}


.QuasarDocs th, .QuasarDocs td {
.alert-banner strong {
     padding: 8px;
     font-size: 1.3em;
     text-align: left;
     text-transform: uppercase;
    border-bottom: 1px solid #ddd;
}
}
 
.quasar-entry-infobox {
/* Link styles for QuasarDocs pages */
  background-color: #131A3F; /* Background color */
.QuasarDocs a {
  border: 2px solid #01FFF6; /* Border color */
    color: #336699;
  padding: 10px;
  width: 300px;
  color: #FFFFFF; /* Text color */
  font-family: "Courier New", Courier, monospace;
  float: right; /* Float to the right */
  margin: 0 0 10px 10px; /* Add some margin for spacing */
}
}


.QuasarDocs a:visited {
.quasar-entry-header {
    color: #6699cc;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
}


.QuasarDocs a:hover, .QuasarDocs a:focus {
.quasar-entry-image {
    color: #003366;
  text-align: center;
    text-decoration: underline;
  margin-bottom: 10px;
}
}


/* Footer styles for QuasarDocs pages */
.quasar-entry-status {
.QuasarDocs #footer {
  font-size: 16px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    font-size: 0.85em;
    color: #666;
    text-align: center;
}
}
/* End of QuasarDocs theme */

Latest revision as of 16:20, 30 August 2024

/* General Skin Styles - Applied globally */
/* Header Styles */
.main-page-header {
    background-color: #2c2f33;
    color: #ffffff;
    padding: 10px;
    font-size: 1.5em;
    text-align: center;
    border-radius: 5px;
}

/* Box Styles */
.main-page-box {
    background-color: #f9f9f9;
    border: 1px solid #dddddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.main-page-box h3 {
    background-color: #dddddd;
    padding: 5px;
    font-size: 1.2em;
    margin: -10px -10px 10px -10px;
    border-radius: 5px 5px 0 0;
}
.quasar-entry-infobox {
  background-color: #131A3F; /* Background color */
  border: 2px solid #01FFF6; /* Border color */
  padding: 10px;
  width: 300px;
  color: #FFFFFF; /* Text color */
  font-family: "Courier New", Courier, monospace;
}

.quasar-entry-header {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.quasar-entry-image {
  text-align: center;
  margin-bottom: 10px;
}

.quasar-entry-status {
  font-size: 16px;
}

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

.main-page-box li {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.main-page-box li img {
    margin-right: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

/* Infobox Styles */
.infobox {
    float: right;
    width: 250px;
    border: 1px solid #aaa;
    background-color: #f9f9f9;
    padding: 5px;
    margin: 0 0 1em 1em;
    font-family: Arial, sans-serif;
    font-size: 90%;
}
/* Banner stuff :D */
.alert-banner {
    background-color: #01FFF6;
    color: #ffffff;           
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    border: 5px solid #131A3F; 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-banner .alert-icon {
    width: 30px; /* Adjust the size of the image */
    height: 30px;
    margin-right: 10px; /* Space between the image and the text */
}

.alert-banner strong {
    font-size: 1.3em;
    text-transform: uppercase;
}
.quasar-entry-infobox {
  background-color: #131A3F; /* Background color */
  border: 2px solid #01FFF6; /* Border color */
  padding: 10px;
  width: 300px;
  color: #FFFFFF; /* Text color */
  font-family: "Courier New", Courier, monospace;
  float: right; /* Float to the right */
  margin: 0 0 10px 10px; /* Add some margin for spacing */
}

.quasar-entry-header {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.quasar-entry-image {
  text-align: center;
  margin-bottom: 10px;
}

.quasar-entry-status {
  font-size: 16px;
}