MediaWiki:Mobile.css: Unterschied zwischen den Versionen

Aus Schulgestaltungswiki
Zur Navigation springen Zur Suche springen
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung Erweiterte mobile Bearbeitung
 
Zeile 32: Zeile 32:
     background: #efeeee;
     background: #efeeee;
     color: #000;
     color: #000;
    font-weight: bold;
     width: 140px;
     width: 150px;
     height: 8em;
     height: 7em;
     padding: 0px 10px;
     padding: 0px 10px;
     transition: 0.3s;
     transition: 0.3s;

Aktuelle Version vom 20. Oktober 2021, 19:09 Uhr

/* Das CSS hier wird für die Benutzer der mobilen Website geladen. */

a.one:link, a.one:visited {
  background-color: #00b300;
  color: white;
  padding: 10px 14px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-shadow: 3px 3px 5px  #e6e6e6;
}

a.one:hover, a.one:active {
  background-color: #008000;
}

/* Button-Cluster für die Projektübersicht */
.flex-cluster {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 900px;
}
.flex-cluster > div {
    margin: 2.5px;
}
.flex-cluster > div > a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: #efeeee;
    color: #000;
    width: 140px;
    height: 8em;
    padding: 0px 10px;
    transition: 0.3s;
}
.flex-cluster > div > a:hover {
    background: #00b500;
    text-decoration: none;
}