Info-icon.png We have moved to https://openmodeldb.info/. This new site has a tag and search system, which will make finding the right models for you much easier! If you have any questions, ask here: https://discord.gg/cpAUpDK

Difference between revisions of "MediaWiki:Common.css"

From Upscale Wiki
Jump to navigation Jump to search
m
m
Line 19: Line 19:
  
 
/* Cookie Warning */
 
/* Cookie Warning */
.mw-cookiewarning-container {
+
.mw-cookiewarning-container, banner-container {
 
     padding: 4px 15px;
 
     padding: 4px 15px;
 
}
 
}
Line 41: Line 41:
 
.mw-cookiewarning-text > form {
 
.mw-cookiewarning-text > form {
 
     display: block;
 
     display: block;
    padding-top: 4px;
 
 
}
 
}
  
 
.mw-cookiewarning-text > span {
 
.mw-cookiewarning-text > span {
 
     display: block;
 
     display: block;
 +
    padding-bottom: 4px;
 
}
 
}
  

Revision as of 22:17, 30 August 2019

/* CSS placed here will be applied to all skins.
Try to keep styles as specific as possible, and comment them where they were originally intended to be used.
Using styles in templates and then using the template is the safest way to use these overrides. */




/* Fonts */
@font-face {
  font-family: "Comic Papyrus";
  src: url("https://upscale.wiki/w/resources/assets/fonts/ComicPapyrus.ttf") format("truetype");
}

body {font-family: "Comic Papyrus", sans-serif}
div#content h1, div#content h2 {font-family: "Comic Papyrus", serif}




/* Cookie Warning */
.mw-cookiewarning-container, banner-container {
    padding: 4px 15px;
}

.mw-cookiewarning-text {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;

    align-items: center;
    justify-content: center;
}

.mw-cookiewarning-text > form {
    display: block;
}

.mw-cookiewarning-text > span {
    display: block;
    padding-bottom: 4px;
}




/* Template:Error */
.generalErrorText {
    color: #d33;
    font-size: larger;
    font-style: italic;
    font-weight: bold;
}

.generalErrorText a {
    color: #36b;
}