Difference between revisions of "MediaWiki:Common.css"
Line 13: | Line 13: | ||
color: #8B4513; | color: #8B4513; | ||
} | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* columns on the first page */ | ||
.entrance.row { | .entrance.row { | ||
Line 35: | Line 40: | ||
list-style: none; | list-style: none; | ||
} | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* hiding elements pertaining to classic wiki styling */ | ||
body.page-Main_Page h1#firstHeading.title { | body.page-Main_Page h1#firstHeading.title { | ||
Line 49: | Line 59: | ||
div.portal#p-tb{ | div.portal#p-tb{ | ||
− | + | display:none; | |
+ | } | ||
+ | |||
+ | span.mw-redirectedfrom{ | ||
+ | display:none; | ||
} | } | ||
h3#p-Why-label{ | h3#p-Why-label{ | ||
− | + | display:block !important; | |
} | } | ||
− | |||
− | |||
− | |||
− | a.new {color: | + | /* defining style for links */ |
+ | |||
+ | a, a:visited {color:#691bce;} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* defining style for inexistent links */ | ||
+ | |||
+ | a.new {color:red !important;} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | h1#firstHeading.firstHeading {font-size:3.5em; color:red;} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* styling the New Page form */ | ||
+ | |||
+ | .form_side {float:right;} | ||
+ | |||
+ | .form_main {float:left;} | ||
+ | |||
+ | .form_container {width:90%;} | ||
+ | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
.mw-parser-output { | .mw-parser-output { | ||
margin:0 auto; | margin:0 auto; | ||
} | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* styling the template */ | ||
.template_image { | .template_image { | ||
Line 102: | Line 135: | ||
font-family: rumeur; | font-family: rumeur; | ||
} | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* styling "not found on" text on the nav bar */ | ||
li#n-not-found-on a, li#n-not-found-on a:visited { | li#n-not-found-on a, li#n-not-found-on a:visited { |
Revision as of 01:12, 28 August 2019
/* CSS placed here will be applied to all skins */
* {
box-sizing: border-box;
font-family: 'SaniTrixieSans', sans-serif ;
}
h1, h2, h3, h4, h5, h6 {
font-family: '', sans-serif ;
text-transform: lowercase;
border-bottom: none !important;
font-weight: bold;
color: #8B4513;
}
/* columns on the first page */
.entrance.row {
content: "";
clear: both;
display: table;
}
.entrance.column {
float: left;
width: 33.33%;
padding: 10px;
}
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
ul {
list-style: none;
}
/* hiding elements pertaining to classic wiki styling */
body.page-Main_Page h1#firstHeading.title {
display: none;
}
body.page-Main_Page h3#tagline {
display: none;
}
#simpleSearch {
display: none;
}
div.portal#p-tb{
display:none;
}
span.mw-redirectedfrom{
display:none;
}
h3#p-Why-label{
display:block !important;
}
/* defining style for links */
a, a:visited {color:#691bce;}
/* defining style for inexistent links */
a.new {color:red !important;}
h1#firstHeading.firstHeading {font-size:3.5em; color:red;}
/* styling the New Page form */
.form_side {float:right;}
.form_main {float:left;}
.form_container {width:90%;}
.mw-parser-output {
margin:0 auto;
}
/* styling the template */
.template_image {
float:right;
margin-right: 0;
}
dd {
margin-left: 0 !important;
}
.newpagemain {
width:70%;
margin-left: 3em;
}
table.cwarning {
color: hotpink;
padding: 0.5em 2em 0 2em;
}
b.descrip {
font-family: rumeur;
}
/* styling "not found on" text on the nav bar */
li#n-not-found-on a, li#n-not-found-on a:visited {
color: red !important;
font-size:2em;
font-family:rumeur;
}