MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus smw-dev03
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „→‎Das folgende CSS wird für alle Benutzeroberflächen geladen.: .checkboxcolumns { display: block !important; margin-left: 0em; }“)
 
Keine Bearbeitungszusammenfassung
Zeile 4: Zeile 4:
  display: block !important;
  display: block !important;
  margin-left: 0em;
  margin-left: 0em;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body {
  font-family: 'Roboto', sans-serif;
}
/* Styling für GutachtenAuspragungForm */
.checkbox-list input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2); /* Slightly larger checkbox */
}
.checkbox-list label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  display: block;
  margin-bottom: 8px;
}
.btn-primary {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.btn-primary:hover {
  background-color: #2980b9;
}
}

Version vom 30. März 2025, 20:24 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

.checkboxcolumns {
 display: block !important;
 margin-left: 0em;
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
}

/* Styling für GutachtenAuspragungForm */
.checkbox-list input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2); /* Slightly larger checkbox */
}
.checkbox-list label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  display: block;
  margin-bottom: 8px;
}
.btn-primary {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.btn-primary:hover {
  background-color: #2980b9;
}