MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus smw-dev03
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 12: | Zeile 12: | ||
} | } | ||
/* 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 { | |||
text-align: left !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
} | |||
.checkbox-list input[type="checkbox"] { | .checkbox-list input[type="checkbox"] { | ||
| Zeile 17: | Zeile 35: | ||
transform: scale(1.2); /* Slightly larger checkbox */ | transform: scale(1.2); /* Slightly larger checkbox */ | ||
} | } | ||
.checkbox-list label { | .checkbox-list label { | ||
font-family: Arial, Helvetica, sans-serif; | font-family: Arial, Helvetica, sans-serif; | ||
| Zeile 22: | Zeile 41: | ||
color: #333; /* Darker text color to match the image */ | color: #333; /* Darker text color to match the image */ | ||
line-height: 1.6; /* Slightly more spacing */ | line-height: 1.6; /* Slightly more spacing */ | ||
display: | display: inline !important; | ||
margin- | margin: 0 !important; | ||
padding: 0 !important; | |||
vertical-align: middle; | |||
} | } | ||
.checkbox-list div, .checkbox-list span { | |||
display: block !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
text-align: left !important; | |||
margin-bottom: 8px; | |||
} | |||
/* Ensure the first checkbox in the list is also left-aligned */ | /* Ensure the first checkbox in the list is also left-aligned */ | ||
.checkbox-list div:first-child, | .checkbox-list div:first-child, | ||
| Zeile 32: | Zeile 62: | ||
} | } | ||
.checkbox-container { | |||
padding | margin: 0 !important; | ||
padding: 0 !important; | |||
text-align: left !important; | |||
} | } | ||
.btn-primary { | .btn-primary { | ||
| Zeile 47: | Zeile 77: | ||
font-family: Arial, Helvetica, sans-serif; | font-family: Arial, Helvetica, sans-serif; | ||
} | } | ||
.btn-primary:hover { | .btn-primary:hover { | ||
background-color: #2980b9; | background-color: #2980b9; | ||
} | } | ||
Version vom 31. März 2025, 14:51 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;
}
/* 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 {
text-align: left !important;
margin: 0 !important;
padding: 0 !important;
}
.checkbox-list input[type="checkbox"] {
margin-right: 8px;
transform: scale(1.2); /* Slightly larger checkbox */
}
.checkbox-list label {
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
color: #333; /* Darker text color to match the image */
line-height: 1.6; /* Slightly more spacing */
display: inline !important;
margin: 0 !important;
padding: 0 !important;
vertical-align: middle;
}
.checkbox-list div, .checkbox-list span {
display: block !important;
margin: 0 !important;
padding: 0 !important;
text-align: left !important;
margin-bottom: 8px;
}
/* Ensure the first checkbox in the list is also left-aligned */
.checkbox-list div:first-child,
.checkbox-list span:first-child {
padding-left: 0 !important;
margin-left: 0 !important;
}
.checkbox-container {
margin: 0 !important;
padding: 0 !important;
text-align: left !important;
}
.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;
}