MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Wiki-Magica
Wechseln zu: Navigation, Suche
 
(13 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
 
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
body{
+
body,
background: -moz-linear-gradient(-45deg, rgba(176,169,242,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
+
.flex-item{
background: -webkit-linear-gradient(-45deg, rgba(176,169,242,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
+
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cbc8f7+0,d3e1ff+48&1+0,0+47 */
background: linear-gradient(135deg, rgba(176,169,242,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
+
background: -moz-linear-gradient(-45deg, rgba(203,200,247,1) 0%, rgba(211,224,255,0) 47%, rgba(211,225,255,0) 48%); /* FF3.6-15 */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0a9f2', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
+
background: -webkit-linear-gradient(-45deg, rgba(203,200,247,1) 0%,rgba(211,224,255,0) 47%,rgba(211,225,255,0) 48%); /* Chrome10-25,Safari5.1-6 */
 +
background: linear-gradient(135deg, rgba(203,200,247,1) 0%,rgba(211,224,255,0) 47%,rgba(211,225,255,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 +
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cbc8f7', endColorstr='#00d3e1ff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
 +
    background-attachment: fixed;
 +
    background-position: top;
 
}
 
}
 
#mw-page-base{
 
#mw-page-base{
 
background-color: transparent;
 
background-color: transparent;
 
background-image: none;
 
background-image: none;
 +
}
 +
 +
 +
.flex-container {
 +
  padding: 0;
 +
  margin: 0;
 +
  list-style: none;
 +
  display: -webkit-box;
 +
  display: -moz-box;
 +
  display: -ms-flexbox;
 +
  display: -webkit-flex;
 +
  display: flex;
 +
  -webkit-flex-flow: row wrap;
 +
  justify-content: space-around;
 +
}
 +
 +
.flex-item {
 +
  padding: 5px;
 +
  margin: 5px;
 +
  min-width: 200px;
 +
  min-height: 150px;
 +
  margin-top: 10px;
 +
  line-height: 150px;
 +
  color: white;
 +
  font-weight: bold;
 +
  font-size: 3em;
 +
  text-align: center;
 +
  border: 1px solid #a7d7f9 /*rgba(203,200,247,1)*/;
 +
  border-radius: 10px;
 +
  background-attachment: inherit;
 +
}
 +
#p-views,
 +
#p-views ul li:first-child,
 +
#p-personal,
 +
#p-namespaces ul li:first-child{
 +
-webkit-border-top-left-radius: 10px;
 +
-moz-border-radius-top: 10px;
 +
border-top-left-radius: 10px;
 +
}
 +
#p-namespaces ul,
 +
#p-namespaces ul li:last-child,
 +
#p-namespaces ul li:last-child span{
 +
-webkit-border-top-right-radius: 10px;
 +
-moz-border-radius-top: 10px;
 +
border-top-right-radius: 10px;
 +
}
 +
#p-namespaces{
 +
-webkit-border-top-left-radius: 11px;
 +
-moz-border-radius-top: 11px;
 +
border-top-left-radius: 11px;
 +
-webkit-border-top-right-radius: 11px;
 +
border-top-right-radius: 11px;
 +
}
 +
#content{
 +
-webkit-border-bottom-left-radius: 10px;
 +
-moz-border-radius-bottomleft: 10px;
 +
border-bottom-left-radius: 10px;
 
}
 
}

Aktuelle Version vom 25. September 2018, 20:34 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
body,
.flex-item{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cbc8f7+0,d3e1ff+48&1+0,0+47 */
	background: -moz-linear-gradient(-45deg, rgba(203,200,247,1) 0%, rgba(211,224,255,0) 47%, rgba(211,225,255,0) 48%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(203,200,247,1) 0%,rgba(211,224,255,0) 47%,rgba(211,225,255,0) 48%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(203,200,247,1) 0%,rgba(211,224,255,0) 47%,rgba(211,225,255,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cbc8f7', endColorstr='#00d3e1ff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    background-attachment: fixed;
    background-position: top;
}
#mw-page-base{
	background-color: transparent;
	background-image: none;
}


.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}

.flex-item {
  padding: 5px;
  margin: 5px;
  min-width: 200px;
  min-height: 150px;
  margin-top: 10px;
  line-height: 150px;
  color: white;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
  border: 1px solid #a7d7f9 /*rgba(203,200,247,1)*/;
  border-radius: 10px;
  background-attachment: inherit;
}
#p-views,
#p-views ul li:first-child,
#p-personal,
#p-namespaces ul li:first-child{
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-top: 10px;
	border-top-left-radius: 10px;
}
#p-namespaces ul,
#p-namespaces ul li:last-child,
#p-namespaces ul li:last-child span{
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-top: 10px;
	border-top-right-radius: 10px;
}
#p-namespaces{
	-webkit-border-top-left-radius: 11px;
	-moz-border-radius-top: 11px;
	border-top-left-radius: 11px;
	-webkit-border-top-right-radius: 11px;
	border-top-right-radius: 11px;
}
#content{
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
}