MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus BrandWiki
Wechseln zu:Navigation, Suche
imported>Ahoi
(Die Seite wurde neu angelegt: „→‎CSS placed here will be applied to all skins: →‎FONT SOURCE SANS PRO: @import url(http://fonts.googleapis.com/css?family=Lato); * {font-family: 'Lato',…“)
 
imported>Ahoi
Zeile 1: Zeile 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
 +
 +
:root {
 +
--light: #F3FCF0;
 +
--dark: #1F271B;
 +
--accent: #EE4266;
 +
--darkaccent: #540D6E;
 +
--lightaccent: #FFD23F;
 +
}
  
 
/*FONT SOURCE SANS PRO */
 
/*FONT SOURCE SANS PRO */
Zeile 23: Zeile 31:
 
}
 
}
  
body {background-color: #FFE9CF;}
+
body {background-color: var(--light);}
  
  

Version vom 16. April 2019, 21:25 Uhr

/* CSS placed here will be applied to all skins */

:root {
--light: #F3FCF0;
--dark: #1F271B;
--accent: #EE4266;
--darkaccent: #540D6E;
--lightaccent: #FFD23F; 
}

/*FONT SOURCE SANS PRO */
@import url(http://fonts.googleapis.com/css?family=Lato);
* {font-family: 'Lato',sans-serif;}

h1, hr {
	color: #002A4A;
}

h1#firstHeading.firstHeading, {
	font-family: 'Lato', sans-serif;
	color: #002A4A;
}


/********************* HINTERGRUND *********************/
.mw-body {border: 1px solid #FFE9CF;}

#mw-page-base {
background-image: linear-gradient(#ffffff 50%,#FFE9CF 100%);
    background-color: #ffffff;
}

body {background-color: var(--light);}


/********************* AUSARBEITUNGEN & SACHVERHALTE *********************/
.ausarbeitungtab {
	margin: 1em 0;
	width: 90%;
	border-collapse: collapse;
	text-align: left;
}
.ausarbeitungtab th {
	border-bottom: 1px solid  #FFE9CF;
	font-size: smaller;
	font-weight: normal;
	color: #FF9311;
	padding: .5em .4em .1em .3em;
	vertical-align: top;
	text-align: left;
}

.ausarbeitungtab td {
	border-bottom: 1px solid  #FFE9CF; 
	color: #002A4A;
	padding: .1em .4em 1em 1em;
}

/* wird mit S Title gelöst
.ausarbeitungtitel {
font-size: 120%;
font-weight: bold;
} */

/********************* ANLEITUNGEN *********************/
.anleitungtab {
	margin: 1em 0;
	width: 90%;
	border-collapse: collapse;
	text-align: left;
}
.anleitungtab th {
	border-bottom: 1px solid  #FFE9CF;
	font-size: smaller;
	font-weight: normal;
	color: #FF9311;
	padding: .5em .4em .1em .3em;
	vertical-align: top;
	text-align: left;
}

.anleitungtab td {
	border-bottom: 1px solid  #FFE9CF; 
	color: #002A4A;
	padding: .1em .4em 1em 1em;
}