MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus Forum Freie Lastenräder
Fleg (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Fleg (Diskussion | Beiträge) (margin youtube embed) |
||
(37 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | /* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | ||
/* Responsive Images */ | /* -------------- HEADER ------------ */ | ||
/* Header modifications: hide search & go button */ | |||
#searchGoButton { | |||
display: none; | |||
} | |||
#mw-navigation a{ | |||
font-size: 14px; | |||
} | |||
/* Header modifications: Logo */ | |||
#p-logo{ | |||
width: 200px !important; | |||
} | |||
/* Header modifications: Hide non-essential Page Tools */ | |||
#pt-userpage, #pt-mytalk, #pt-watchlist, #pt-mycontris { | |||
display: none; | |||
} | |||
/* Header modifications: Page Tools margin */ | |||
#p-personal { | |||
margin-top: 15px; | |||
margin-bottom: 15px; | |||
} | |||
/* Header modifications: hide search & go button */ | |||
#searchGoButton { | |||
display: none; | |||
} | |||
/* -------------- CONTENT ------------ */ | |||
h1 { | |||
color: #81AD54; | |||
} | |||
/* Hide headline in recent changes box */ | |||
small.recentchanges h4 { | |||
display: none; | |||
} | |||
/* Content: Responsive Images */ | |||
img { max-width: 100%; height: auto; width: auto\9; /* ie8 */ } | img { max-width: 100%; height: auto; width: auto\9; /* ie8 */ } | ||
/* | /* Content: Translation Bar */ | ||
.mw-pt-translate-header { | |||
margin-top: | |||
margin-top: 0px; | |||
margin-bottom: 0 !important; | |||
padding-bottom: 0 !important; | |||
} | } | ||
/* | /* Content Elements: Hero */ | ||
. | .hero { | ||
background: #62b22e; | |||
color: #FFF; | |||
border-radius: 4px 4px 4px 4px !important; | |||
} | |||
/* prevent lower margin for video */ | |||
.hero .embedvideo { | |||
margin-bottom: 0 !important; | |||
} | } | ||
/* Content Elements: Hero Blue Version */ | |||
.hero.blue { | |||
background: #0c4587 | |||
} | |||
.hero.blue a { | |||
color: #FFF; | |||
} | |||
/* ContentElements: Boxen */ | |||
div.row.box { | |||
margin-bottom: 40px; | |||
} | |||
div.row.box .box-content { | |||
text-align: center; | |||
} | |||
/* ContentElements: Button */ | |||
div.row.box .box-content a, .button-container a { | |||
display: inline-block; | |||
margin-bottom: 0; | |||
font-weight: normal; | |||
text-align: center; | |||
vertical-align: middle; | |||
touch-action: manipulation; | |||
cursor: pointer; | |||
background-image: none; | |||
border: 1px solid transparent; | |||
white-space: nowrap; | |||
padding: 6px 12px; | |||
font-size: 14px; | |||
line-height: 1.42857143; | |||
border-radius: 4px; | |||
-webkit-user-select: none; | |||
-moz-user-select: none; | |||
-ms-user-select: none; | |||
user-select: none; | |||
background: #62b22e; | |||
color: #FFF; | |||
} | |||
/* -------------- Home ------------ */ | |||
/* logo gallery */ | /* logo gallery */ | ||
li.gallerybox div.thumb { | li.gallerybox div.thumb { | ||
background: #FFF; | background: #FFF; | ||
border: none; | border: none; | ||
} | } | ||
.srf-redirect .redirecticon { | .srf-redirect .redirecticon { | ||
display:none !important; | display:none !important; | ||
} | } | ||
/* Hide more link on home */ | /* Hide more link on home */ | ||
.home-initiative-icons a { | .home-initiative-icons a { | ||
display: none | display: none | ||
} | } | ||
.home-initiative-icons .srf-gallery a { | .home-initiative-icons .srf-gallery a { | ||
display: block; | display: block; | ||
} | |||
.home-initiative-icons .srf-gallery a { | |||
display: block; | |||
} | |||
.srf-redirect p { | |||
display: none; | |||
} | |||
/* Translation bar */ | |||
div.mw-pt-languages { | |||
display:block; | |||
background: #DFEDF5; | |||
border-radius: 4px 4px 4px 4px; | |||
border: 1px solid #CAE6EF; | |||
margin-bottom: 20px !important; | |||
} | |||
div.mw-pt-languages-label { | |||
background: #DFEDF5; | |||
} | |||
div.mw-pt-translate-header{ | |||
font-size: 13px; | |||
} | |||
/* -------------- FOOTER ------------ */ | |||
ul.footer-info li { | |||
font-size: 11px; | |||
display: inline; | |||
} | } |
Aktuelle Version vom 11. Februar 2021, 15:10 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ /* -------------- HEADER ------------ */ /* Header modifications: hide search & go button */ #searchGoButton { display: none; } #mw-navigation a{ font-size: 14px; } /* Header modifications: Logo */ #p-logo{ width: 200px !important; } /* Header modifications: Hide non-essential Page Tools */ #pt-userpage, #pt-mytalk, #pt-watchlist, #pt-mycontris { display: none; } /* Header modifications: Page Tools margin */ #p-personal { margin-top: 15px; margin-bottom: 15px; } /* Header modifications: hide search & go button */ #searchGoButton { display: none; } /* -------------- CONTENT ------------ */ h1 { color: #81AD54; } /* Hide headline in recent changes box */ small.recentchanges h4 { display: none; } /* Content: Responsive Images */ img { max-width: 100%; height: auto; width: auto\9; /* ie8 */ } /* Content: Translation Bar */ .mw-pt-translate-header { margin-top: 0px; margin-bottom: 0 !important; padding-bottom: 0 !important; } /* Content Elements: Hero */ .hero { background: #62b22e; color: #FFF; border-radius: 4px 4px 4px 4px !important; } /* prevent lower margin for video */ .hero .embedvideo { margin-bottom: 0 !important; } /* Content Elements: Hero Blue Version */ .hero.blue { background: #0c4587 } .hero.blue a { color: #FFF; } /* ContentElements: Boxen */ div.row.box { margin-bottom: 40px; } div.row.box .box-content { text-align: center; } /* ContentElements: Button */ div.row.box .box-content a, .button-container a { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background: #62b22e; color: #FFF; } /* -------------- Home ------------ */ /* logo gallery */ li.gallerybox div.thumb { background: #FFF; border: none; } .srf-redirect .redirecticon { display:none !important; } /* Hide more link on home */ .home-initiative-icons a { display: none } .home-initiative-icons .srf-gallery a { display: block; } .home-initiative-icons .srf-gallery a { display: block; } .srf-redirect p { display: none; } /* Translation bar */ div.mw-pt-languages { display:block; background: #DFEDF5; border-radius: 4px 4px 4px 4px; border: 1px solid #CAE6EF; margin-bottom: 20px !important; } div.mw-pt-languages-label { background: #DFEDF5; } div.mw-pt-translate-header{ font-size: 13px; } /* -------------- FOOTER ------------ */ ul.footer-info li { font-size: 11px; display: inline; }