MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Colliseum
Zur Navigation springen Zur Suche springen
(GeSHi (bundled with MediaWiki 1.21) disabled due to failure)
Keine Bearbeitungszusammenfassung
Zeile 164: Zeile 164:
.toclimit-7 .toclevel-6 ul {
.toclimit-7 .toclevel-6 ul {
display: none;
display: none;
}
/* Selectively hide table of contents auto-numbering, per https://www.mediawiki.org/wiki/Manual:Table_of_contents#Auto-numbering */
.noautonum .tocnumber {
  display: none;
}
}

Version vom 21. August 2020, 15:36 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/*
SyntaxHighlight GeSHi fails with common.css *.js -> disabled for now | jk

*/

/* Special:Search styles */
.mw-search-results {
margin-left: 0.4em;
float: none;
}
/* CSS error in V1.26.2 - float reset - original was float: left; -> destroyed search result layout - jk */

/* Remove source button */
#ca-viewsource { display:none!important; }


#footer-places-about { display:none; }

/* Hide oversized title in main page */
.page-Hauptseite .firstHeading { display:none; }


/* MP Design */
.justify { text-align: justify; }
/* _hold version failed with some browsers, new css gradient works fine in all actual browsers */
.colliseum-box-design {
background: rgb(196,215,232); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(196,215,232,1) 0%, rgba(237,246,253,1) 74%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(196,215,232,1) 0%,rgba(237,246,253,1) 74%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(196,215,232,1) 0%,rgba(237,246,253,1) 74%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4d7e8', endColorstr='#edf6fd',GradientType=0 ); /* IE6-9 */
border: 3px double #fff;
border-radius: 10px;
margin-bottom: 10px;
margin-right: 20px;
padding: 30px 50px;
}

/* scheduled for removal */
.colliseum-box-design_hold {
background: #ccd0dd;
background: -webkit-gradient(linear, top, bottom, from(#bed3e2), to(#eaf1f6));
background: -moz-linear-gradient(top,  #bed3e2,  #eaf1f6);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bed3e2', endColorstr='#eaf1f6');
border: 3px double #fff;
border-radius: 10px;
margin-bottom: 10px;
margin-right: 20px;
padding: 30px 50px;
}
.colliseum-box-design-orange{
background: rgb(250,198,149); /* Old browsers */
background: -moz-linear-gradient(top, rgba(250,198,149,1) 0%, rgba(245,171,102,1) 47%, rgba(239,141,49,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(250,198,149,1) 0%,rgba(245,171,102,1) 47%,rgba(239,141,49,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(250,198,149,1) 0%,rgba(245,171,102,1) 47%,rgba(239,141,49,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fac695', endColorstr='#ef8d31',GradientType=0 ); /* IE6-9 */
border: 3px double #fff;
border-radius: 10px;
margin-bottom: 10px;
margin-right: 20px;
padding: 30px 50px;
}

/* Heading main page */
.collheading {
letter-spacing: 0.008em;
margin-bottom:0px;
font-family:Arial;
font-size:25px;
line-height: 1em;
color: dimgray;
text-shadow:0px 0px 0 rgb(123,123,123), 1px 1px 0 rgb(36,36,36),2px 2px 1px rgba(0,0,0,0),2px 2px 1px rgba(0,0,0,0.5),0px 0px 1px rgba(0,0,0,.2)
}


/* main page box creating - manage size and equal height level */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

/* Heading main page */
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

.wrapper {
	width: 100%;
	margin: 15px auto 10px;
}
.main, .sidebar, .p25  {
	float: left;
	padding: 20px;
}

.main {
	width: 50%;
	 margin: 0 10%;
}

.sidebar {
	width: 50%;
}
.table .container {
	display: table;
		border-spacing: 20px 3px;
	
}
.table .main {
	float: none;
	display: table-cell;
	vertical-align: top;

}
.table .sidebar {
	float: none;
	display: table-cell;
}
.mp25 {
    width: 25%;
     margin: 0 10%;
}
.table .p25{
    float: none;
    display: table-cell;
}
.p25 {
    width: 25%;
     margin: 0 10%;
}
.table .container4 {
	display: table;
	border-spacing: 5px 3px;
	
}
.main100 {
    padding: 0px 20px 0px 20px;
    margin-right: 0px;
}
.container100 {
    display: table;
    width: 100%;
    border-spacing: 20px 3px;
}

/*
 * Allow limiting of which header levels are shown in a TOC;
 * <div class="toclimit-3">, for instance, will limit to
 * showing ==headings== and ===headings=== but no further
 * (as long as there are no =headings= on the page, which
 * there shouldn't be according to the MoS).
 * [[Vorlage:TOC limit]]
 */
.toclimit-2 .toclevel-1 ul,
.toclimit-3 .toclevel-2 ul,
.toclimit-4 .toclevel-3 ul,
.toclimit-5 .toclevel-4 ul,
.toclimit-6 .toclevel-5 ul,
.toclimit-7 .toclevel-6 ul {
	display: none;
}

/* Selectively hide table of contents auto-numbering, per https://www.mediawiki.org/wiki/Manual:Table_of_contents#Auto-numbering */
.noautonum .tocnumber { 
  display: none; 
}