MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus smw-dev03
Wechseln zu:Navigation, Suche
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 22: Zeile 22:
   color: #333;  
   color: #333;  
   line-height: 1.6; /* Slightly more spacing */
   line-height: 1.6; /* Slightly more spacing */
   display: block;
   display: block !important;
   margin-bottom: 8px;  
   margin-bottom: 8px;  
}
}

Version vom 31. März 2025, 15:16 Uhr

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

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

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

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

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