MediaWiki: Common.css: Unterschied zwischen den Versionen

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


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


.stats {
.stats {
Zeile 29: Zeile 32:




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


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


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


/**********************************/
/**********************************/
Zeile 40: Zeile 49:
/*********************************/
/*********************************/


.publictable {






/*************************************/
/* Styling SemanticDrilldown Buttons */
/************************************/
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  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;
}
}

Version vom 9. November 2018, 21:38 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: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  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;
}