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 26: Line 26:
 
/* User Agreement */
 
/* User Agreement */
 
.user-agree-container {
 
.user-agree-container {
    height: 10em;
 
 
 
     display: -moz-box;
 
     display: -moz-box;
 
     display: -ms-flexbox;
 
     display: -ms-flexbox;

Revision as of 05:31, 31 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}




/* Editing Copyright - Temporary Removal */
/* #editpage-copywarn {display:none} */




/* User Agreement */
.user-agree-container {
    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;
}




/* Cookie Warning */
.mw-cookiewarning-container {
    padding: 5px 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: 2px;
}




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

.generalErrorText a {
    color: #36b;
}