MediaWiki: Common.css: Unterschied zwischen den Versionen

Aus Joachim Camerarius (1500-1574)
Wechseln zu: Navigation, Suche
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 113: Zeile 113:




ul.hoverlist {
div.hoverlist > ul {
   list-style-type: none;
   list-style-type: none;
   margin: 0;
   margin: 0;
Zeile 119: Zeile 119:
}
}


li.hoverlist {
div.hoverlist > li {
   font: 200 20px/1.5 Helvetica, Verdana, sans-serif;
   font: 200 20px/1.5 Helvetica, Verdana, sans-serif;
   border-bottom: 1px solid #ccc;
   border-bottom: 1px solid #ccc;
}
}


li.hoverlist:last-child {
div.hoverlist > li:last-child {
   border: none;
   border: none;
}
}


li.hoverlist p {
div.hoverlist > li a {
   text-decoration: none;
   text-decoration: none;
   color: #000;
   color: #000;
Zeile 141: Zeile 141:
}
}


li.hoverlist p.hoverlist:hover {
div.hoverlist li a:hover {
   font-size: 30px;
   font-size: 30px;
   background: #f6f6f6;
   background: #f6f6f6;
}
}

Version vom 13. November 2018, 15:25 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700|Montserrat:400,700);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);

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

#sfForm .select2-container-multi .select2-choices {
        min-height: 60px;
}

.navbar-inner{ background-color: #F5F5F5}

.private {
    display: none;
}

/******************************/
/* Animate Stats on main page */
/******************************/

.stats {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.stats .fa {
  color: #063d79;
  font-size: 40px;
}


/**** end count stats ****/



/********************************/
/* Disable output of categories */
/********************************/

.mw-category-generated {
   display: none;
}


/**********************************/
/* Table styling for public skin */
/*********************************/





/*************************************/
/* Styling SemanticDrilldown Buttons */
/************************************/

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #063d79;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/*************************/
/** chronic list styling */
/*************************/

div.hoverlist {
  width: 200px;
  margin: 30px;
}

h2.hoverlist {
  font: 400 40px/1.5 Helvetica, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}


div.hoverlist > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

div.hoverlist > li {
  font: 200 20px/1.5 Helvetica, Verdana, sans-serif;
  border-bottom: 1px solid #ccc;
}

div.hoverlist > li:last-child {
  border: none;
}

div.hoverlist > li a {
  text-decoration: none;
  color: #000;

  -webkit-transition: font-size 0.3s ease, background-color 0.3s ease;
  -moz-transition: font-size 0.3s ease, background-color 0.3s ease;
  -o-transition: font-size 0.3s ease, background-color 0.3s ease;
  -ms-transition: font-size 0.3s ease, background-color 0.3s ease;
  transition: font-size 0.3s ease, background-color 0.3s ease;
  display: block;
  width: 200px;
}

div.hoverlist li a:hover {
  font-size: 30px;
  background: #f6f6f6;
}