More actions
No edit summary |
No edit summary |
||
(31 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Le CSS placé ici sera appliqué à tous les habillages. */ | /* Le CSS placé ici sera appliqué à tous les habillages. */ | ||
.breakouttitle { | .breakout { | ||
float: right; | |||
border: 1px solid #888; | |||
background: var(--color-surface-0); | |||
padding: 0.2em; | |||
} | |||
@media screen and (max-width: 893px) { | |||
.breakout { | |||
display: none; | |||
} | |||
} | |||
.research { | |||
background: var(--background-color-framed); | |||
} | |||
.skin-citizen-dark .breakouttitle { | |||
text-align: center; | text-align: center; | ||
background: #1a252d; | background: #1a252d; | ||
Line 6: | Line 23: | ||
border-bottom: 1px solid #6a6; | border-bottom: 1px solid #6a6; | ||
} | } | ||
.skin-citizen-light .breakouttitle { | |||
text-align: center; | |||
background: #eaecf0; | |||
border-top: 1px solid #6a6; | |||
border-bottom: 1px solid #6a6; | |||
} | |||
.skin-citizen-light .mw-footer { | |||
background: #ffffff; | |||
} | |||
.skin-citizen-dark .mw-footer { | |||
background: #131a21 | |||
} | |||
.skin-citizen-dark .last-modified-bar-content { | |||
background: #131a21; | |||
} | |||
.skin-citizen-light .last-modified-bar-content { | |||
background: #f8f9fa; | |||
} | |||
.skin-citizen-dark .last-modified-bar { | |||
background: #131a21; | |||
} | |||
.skin-citizen-light .last-modified-bar { | |||
background: #f8f9fa; | |||
} | |||
.skin-citizen-light .mw-footer a.external { | |||
color: #000000; | |||
} | |||
.skin-citizen-dark .mw-footer a.external { | |||
color: #cfdee8; | |||
} | |||
.skin-citizen-light .online a { | |||
color: #000000; | |||
} | |||
.skin-citizen-dark .online a { | |||
color: #cfdee8; | |||
} | |||
.skin-citizen-light #footer-places-privacy a { | |||
color: #000000; | |||
} | |||
.skin-citizen-dark #footer-places-privacy a { | |||
color: #cfdee8; | |||
} | |||
.skin-citizen-light #footer-places-about a { | |||
color: #000000; | |||
} | |||
.skin-citizen-dark #footer-places-about a { | |||
color: #cfdee8; | |||
} | |||
.skin-citizen-light #footer-places-disclaimer a { | |||
color: #000000; | |||
} | |||
.skin-citizen-dark #footer-places-disclaimer a { | |||
color: #cfdee8; | |||
} | |||
.skin-citizen-light #footer-info-0 { | |||
color: #000000; | |||
} | |||
.skin-citizen-dark #footer-info-0 { | |||
color: #cfdee8; | |||
} |
Latest revision as of 13:45, 20 February 2023
/* Le CSS placé ici sera appliqué à tous les habillages. */ .breakout { float: right; border: 1px solid #888; background: var(--color-surface-0); padding: 0.2em; } @media screen and (max-width: 893px) { .breakout { display: none; } } .research { background: var(--background-color-framed); } .skin-citizen-dark .breakouttitle { text-align: center; background: #1a252d; border-top: 1px solid #6a6; border-bottom: 1px solid #6a6; } .skin-citizen-light .breakouttitle { text-align: center; background: #eaecf0; border-top: 1px solid #6a6; border-bottom: 1px solid #6a6; } .skin-citizen-light .mw-footer { background: #ffffff; } .skin-citizen-dark .mw-footer { background: #131a21 } .skin-citizen-dark .last-modified-bar-content { background: #131a21; } .skin-citizen-light .last-modified-bar-content { background: #f8f9fa; } .skin-citizen-dark .last-modified-bar { background: #131a21; } .skin-citizen-light .last-modified-bar { background: #f8f9fa; } .skin-citizen-light .mw-footer a.external { color: #000000; } .skin-citizen-dark .mw-footer a.external { color: #cfdee8; } .skin-citizen-light .online a { color: #000000; } .skin-citizen-dark .online a { color: #cfdee8; } .skin-citizen-light #footer-places-privacy a { color: #000000; } .skin-citizen-dark #footer-places-privacy a { color: #cfdee8; } .skin-citizen-light #footer-places-about a { color: #000000; } .skin-citizen-dark #footer-places-about a { color: #cfdee8; } .skin-citizen-light #footer-places-disclaimer a { color: #000000; } .skin-citizen-dark #footer-places-disclaimer a { color: #cfdee8; } .skin-citizen-light #footer-info-0 { color: #000000; } .skin-citizen-dark #footer-info-0 { color: #cfdee8; }