MediaWiki:Common.css: Difference between revisions

From Grooper Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* BEGIN Styling to match original wiki by Adebayo */
* {
    font-family: Roboto, Arial, sans-serif;
}
div .firstHeading,
h2,
h3 {
    font-family: Roboto, Arial, sans-serif;
    color: #f89420;
}
h4 {
    font-family: Roboto, Arial, sans-serif;
    font-size:115%;
    color:#662D91;
}
.vector-body blockquote {
    font-size: 125%;
    padding: 0;
    border: 0;
}
/* END Styling to match original wiki by Adebayo */
/*Remove Special pages link from Tools menu in left-hand Navigation bar*/
#t-specialpages {
  display: none;
}
/*Added to scale and wrap images*/
img {
img {
     max-width:100%;
     max-width:100%;

Revision as of 13:52, 8 December 2022

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

/* BEGIN Styling to match original wiki by Adebayo */
* {
    font-family: Roboto, Arial, sans-serif;
}

div .firstHeading,
h2,
h3 {
    font-family: Roboto, Arial, sans-serif;
    color: #f89420;
}

h4 {
    font-family: Roboto, Arial, sans-serif;
    font-size:115%;
    color:#662D91;
}

.vector-body blockquote {
    font-size: 125%;
    padding: 0;
    border: 0;
}
/* END Styling to match original wiki by Adebayo */

/*Remove Special pages link from Tools menu in left-hand Navigation bar*/
#t-specialpages {
  display: none;
}

/*Added to scale and wrap images*/
img {
    max-width:100%;
    height:auto;
}

@media only screen and (max-width: 1200px) {
.tabs-container td {
    display: block;
    width: 95% !important;
    padding: 5px !important;
}

.tabs-container tr {
    width: 100%;
}


}