Notice: We are aware that many of the Chewiki’s images are still broken. We promise: we will try our best to fix it, but we don't guarantee that the fix will be trivial.
Difference between revisions of "MediaWiki:Common.css"
From Chewiki Archive - YouChew:
1% Funny, 99% Hot Gas
TheFXexpert (talk | contribs) m (now it should work) |
|||
(33 intermediate revisions by 3 users not shown) | |||
Line 4: | Line 4: | ||
/* HIGHLIGHTED USERNAMES LIST */ | /* HIGHLIGHTED USERNAMES LIST */ | ||
/*----------------------------*/ | /*----------------------------*/ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
/* Sysops */ | /* Sysops */ | ||
− | a[title="User:AbsoluteBillion"], | + | .mw-userlink[title="User:AbsoluteBillion"], .ns-talk a[title="User:AbsoluteBillion"], |
− | a[title="User:AkaPella"], | + | .mw-userlink[title="User:AkaPella"], .ns-talk a[title="User:AkaPella"], |
− | a[title="User:Crazy Luigi"], | + | .mw-userlink[title="User:Crazy Luigi"], .ns-talk a[title="User:Crazy Luigi"], |
− | a[title="User:Dopply"], | + | .mw-userlink[title="User:Dopply"], .ns-talk a[title="User:Dopply"], |
− | a[title="User:Intermission"], | + | .mw-userlink[title="User:Intermission"], .ns-talk a[title="User:Intermission"], |
− | a[title="User:NinjaCoachZ"], | + | .mw-userlink[title="User:NinjaCoachZ"], .ns-talk a[title="User:NinjaCoachZ"], |
− | a[title="User:RabbitSnore"], | + | .mw-userlink[title="User:RabbitSnore"], .ns-talk a[title="User:RabbitSnore"], |
− | a[title="User:Stegblob"], | + | .mw-userlink[title="User:Stegblob"], .ns-talk a[title="User:Stegblob"], |
− | a[title="User:The Electric Cheese"], | + | .mw-userlink[title="User:The Electric Cheese"], .ns-talk a[title="User:The Electric Cheese"], |
− | a[title="User:TheFXexpert"], | + | .mw-userlink[title="User:TheFXexpert"], .ns-talk a[title="User:TheFXexpert"], |
− | a[title="User:Thereisnospork303"] { color:#1B7DBF !important;} | + | .mw-userlink[title="User:Thereisnospork303"], .ns-talk a[title="User:Thereisnospork303"], |
+ | .mw-userlink[title="User:Whelt"], .ns-talk a[title="User:Whelt"] | ||
+ | |||
+ | { color:#1B7DBF !important;} /* Blue */ | ||
/* Chewiki Staff */ | /* Chewiki Staff */ | ||
− | + | .mw-userlink[title="User:Kingplatypus3rd"], .ns-talk a[title="User:Kingplatypus3rd"], | |
− | a[title="User:Kingplatypus3rd"], | + | .mw-userlink[title="User:Probo"], .ns-talk a[title="User:Probo"], |
− | a[title="User:Probo"], | + | .mw-userlink[title="User:Sonic"], .ns-talk a[title="User:Sonic"], |
− | a[title="User:Sonic"], | + | .mw-userlink[title="User:Triple sSs"], .ns-talk a[title="User:Triple sSs"], |
− | a[title="User:Triple sSs"], | + | .mw-userlink[title="User:TrueTubePoops"], .ns-talk a[title="User:TrueTubePoops"], |
− | a[title="User:TrueTubePoops"], | + | .mw-userlink[title="User:YTPnews1.MustangSally72"], .ns-talk a[title="User:YTPnews1.MustangSally72"], |
− | a[title="User:YTPnews1.MustangSally72"], | + | .mw-userlink[title="User:Yoshit"], .ns-talk a[title="User:Yoshit"] |
− | a[title="User:Yoshit"] { color:#770FBF !important;} | + | |
+ | { color:#770FBF !important;} /* Purple */ | ||
/* | /* | ||
Line 52: | Line 41: | ||
.box { | .box { | ||
− | color: #000000; | + | color: #000000; |
− | border: 1px solid #aaa; | + | border: 1px solid #aaa; |
− | background-color: #f9f9f9; | + | background-color: #f9f9f9; |
− | padding: 5px; | + | padding: 5px; |
− | font-size: 95%; | + | font-size: 95%; |
+ | } | ||
+ | |||
+ | /* | ||
+ | ** Registration Page | ||
+ | */ | ||
+ | |||
+ | /* Remove real name input box */ | ||
+ | label[for="wpRealName"], | ||
+ | input#wpRealName { | ||
+ | display: none; | ||
+ | } | ||
+ | |||
+ | /* Fix justified text */ | ||
+ | form[name="accountrequest"] p { | ||
+ | text-align: left; | ||
+ | } | ||
+ | |||
+ | /* | ||
+ | ** Fix justification of text in galleries. | ||
+ | */ | ||
+ | div.gallerytext { | ||
+ | text-align: left; | ||
+ | } | ||
+ | |||
+ | /* | ||
+ | ** Fix edit form mess. | ||
+ | */ | ||
+ | #editform .editOptions { | ||
+ | display: block; | ||
+ | } | ||
+ | |||
+ | /* | ||
+ | ** Fix annoyingly large table of contents. | ||
+ | */ | ||
+ | #toc { | ||
+ | display: inline-block; | ||
} | } | ||
/* | /* | ||
− | ** | + | ** Spoilers Template |
*/ | */ | ||
+ | .spoiler-text { | ||
+ | font-weight: bold; | ||
+ | } | ||
+ | |||
+ | .spoiler-button { | ||
+ | background: #D8D8D8; | ||
+ | display: inline-block; | ||
+ | padding: 0 10px; | ||
+ | font-size: .8em; | ||
+ | cursor: default; | ||
+ | } | ||
+ | |||
+ | .spoiler-button:active { | ||
+ | background: #C7C7C7; | ||
+ | } | ||
+ | |||
+ | .mw-collapsible { | ||
+ | border: 1px inset #E9E9E9; | ||
+ | padding: 4px; | ||
+ | } | ||
+ | |||
+ | .mw-collapsible-content { | ||
+ | overflow: hidden; | ||
+ | } | ||
− | + | html | |
− | + | { | |
− | + | font-size: 110%; | |
− | |||
− | |||
− | |||
} | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | |||
+ | @media only screen and (max-width: 1300px) | ||
+ | { | ||
+ | |||
+ | html | ||
+ | { | ||
+ | font-size: 15pt !important; | ||
} | } | ||
− | + | ||
− | |||
− | |||
− | |||
} | } | ||
+ | |||
+ | body.page-Main.action-view h1.firstHeading, body.page-Main.action-submit h1.firstHeading, .MediaTransformError { display: none; } |
Latest revision as of 09:52, 18 January 2022
/* CSS placed here will be applied to all skins */ /*----------------------------*/ /* HIGHLIGHTED USERNAMES LIST */ /*----------------------------*/ /* Sysops */ .mw-userlink[title="User:AbsoluteBillion"], .ns-talk a[title="User:AbsoluteBillion"], .mw-userlink[title="User:AkaPella"], .ns-talk a[title="User:AkaPella"], .mw-userlink[title="User:Crazy Luigi"], .ns-talk a[title="User:Crazy Luigi"], .mw-userlink[title="User:Dopply"], .ns-talk a[title="User:Dopply"], .mw-userlink[title="User:Intermission"], .ns-talk a[title="User:Intermission"], .mw-userlink[title="User:NinjaCoachZ"], .ns-talk a[title="User:NinjaCoachZ"], .mw-userlink[title="User:RabbitSnore"], .ns-talk a[title="User:RabbitSnore"], .mw-userlink[title="User:Stegblob"], .ns-talk a[title="User:Stegblob"], .mw-userlink[title="User:The Electric Cheese"], .ns-talk a[title="User:The Electric Cheese"], .mw-userlink[title="User:TheFXexpert"], .ns-talk a[title="User:TheFXexpert"], .mw-userlink[title="User:Thereisnospork303"], .ns-talk a[title="User:Thereisnospork303"], .mw-userlink[title="User:Whelt"], .ns-talk a[title="User:Whelt"] { color:#1B7DBF !important;} /* Blue */ /* Chewiki Staff */ .mw-userlink[title="User:Kingplatypus3rd"], .ns-talk a[title="User:Kingplatypus3rd"], .mw-userlink[title="User:Probo"], .ns-talk a[title="User:Probo"], .mw-userlink[title="User:Sonic"], .ns-talk a[title="User:Sonic"], .mw-userlink[title="User:Triple sSs"], .ns-talk a[title="User:Triple sSs"], .mw-userlink[title="User:TrueTubePoops"], .ns-talk a[title="User:TrueTubePoops"], .mw-userlink[title="User:YTPnews1.MustangSally72"], .ns-talk a[title="User:YTPnews1.MustangSally72"], .mw-userlink[title="User:Yoshit"], .ns-talk a[title="User:Yoshit"] { color:#770FBF !important;} /* Purple */ /* ** A universal box class for templates since the new toc class in the new skin will break most templates. ** Also, it is more intuitive for template creators. */ .box { color: #000000; border: 1px solid #aaa; background-color: #f9f9f9; padding: 5px; font-size: 95%; } /* ** Registration Page */ /* Remove real name input box */ label[for="wpRealName"], input#wpRealName { display: none; } /* Fix justified text */ form[name="accountrequest"] p { text-align: left; } /* ** Fix justification of text in galleries. */ div.gallerytext { text-align: left; } /* ** Fix edit form mess. */ #editform .editOptions { display: block; } /* ** Fix annoyingly large table of contents. */ #toc { display: inline-block; } /* ** Spoilers Template */ .spoiler-text { font-weight: bold; } .spoiler-button { background: #D8D8D8; display: inline-block; padding: 0 10px; font-size: .8em; cursor: default; } .spoiler-button:active { background: #C7C7C7; } .mw-collapsible { border: 1px inset #E9E9E9; padding: 4px; } .mw-collapsible-content { overflow: hidden; } html { font-size: 110%; } @media only screen and (max-width: 1300px) { html { font-size: 15pt !important; } } body.page-Main.action-view h1.firstHeading, body.page-Main.action-submit h1.firstHeading, .MediaTransformError { display: none; }