More actions
No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
.documentation { | .documentation { | ||
background-color: hsl(215, 75%, 92%); | |||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
padding: 0.8em 1em 0.7em; | padding: 0.8em 1em 0.7em; | ||
Line 5: | Line 6: | ||
clear: both; | clear: both; | ||
} | } | ||
body. | body.skin-theme-clientpref-night .documentation { | ||
background-color: hsl(215, 25%, 8%); | |||
border-color: #121212; | border-color: #121212; | ||
} | } | ||
Line 12: | Line 14: | ||
.documentation-header-bottom { | .documentation-header-bottom { | ||
padding: 0.8em 1em 0.7em; | padding: 0.8em 1em 0.7em; | ||
background-color: hsl(215, 75%, 85%); | |||
} | |||
body.skin-theme-clientpref-night .documentation-header-top, | |||
body.skin-theme-clientpref-night .documentation-header-bottom { | |||
background-color: hsl(215, 25%, 12%); | |||
} | } | ||
Line 39: | Line 46: | ||
margin-right: 1em; | margin-right: 1em; | ||
line-height: 1; | line-height: 1; | ||
} | |||
.documentation-badDoc { | |||
background-color: hsl(40, 75%, 92%); | |||
} | |||
body.skin-theme-clientpref-night .documentation-badDoc { | |||
background-color: hsl(40, 25%, 8%); | |||
} | |||
.documentation-badDoc .documentation-header-top, | |||
.documentation-badDoc .documentation-header-bottom { | |||
background-color: hsl(40, 75%, 85%); | |||
} | |||
body.skin-theme-clientpref-night .documentation-badDoc .documentation-header-top, | |||
body.skin-theme-clientpref-night .documentation-badDoc .documentation-header-bottom { | |||
background-color: hsl(40, 25%, 12%); | |||
} | |||
.documentation-noDoc { | |||
background-color: hsl(0, 0%, 92%); | |||
} | |||
body.skin-theme-clientpref-night .documentation-noDoc { | |||
background-color: hsl(0, 0%, 8%); | |||
} | |||
.documentation-noDoc .documentation-header-top, | |||
.documentation-noDoc .documentation-header-bottom { | |||
background-color: hsl(0, 0%, 85%); | |||
} | |||
body.skin-theme-clientpref-night .documentation-noDoc .documentation-header-top, | |||
body.skin-theme-clientpref-night .documentation-noDoc .documentation-header-bottom { | |||
background-color: hsl(0, 0%, 12%); | |||
} | } | ||
Line 48: | Line 87: | ||
} | } | ||
} | } | ||
/* | /* | ||
[[Category:Template styles]] | [[Category:Template styles]] | ||
*/ | */ |
Revision as of 21:16, 16 June 2025
.documentation {
background-color: hsl(215, 75%, 92%);
border: 1px solid #ccc;
padding: 0.8em 1em 0.7em;
margin-top: 1em;
clear: both;
}
body.skin-theme-clientpref-night .documentation {
background-color: hsl(215, 25%, 8%);
border-color: #121212;
}
.documentation-header-top,
.documentation-header-bottom {
padding: 0.8em 1em 0.7em;
background-color: hsl(215, 75%, 85%);
}
body.skin-theme-clientpref-night .documentation-header-top,
body.skin-theme-clientpref-night .documentation-header-bottom {
background-color: hsl(215, 25%, 12%);
}
.documentation-header-top {
margin: -0.8em -1em 0.8em;
border-bottom: inherit;
}
.documentation-header-bottom {
margin: 0.7em -1em -0.7em;
border-top: inherit;
clear: both;
}
.documentation #documentation-jump-to-code {
white-space: nowrap;
}
.documentation #documentation-header-tools {
float: right;
margin-left: 2em;
}
.documentation-header-title {
font-weight: bold;
font-size: 130%;
margin-right: 1em;
line-height: 1;
}
.documentation-badDoc {
background-color: hsl(40, 75%, 92%);
}
body.skin-theme-clientpref-night .documentation-badDoc {
background-color: hsl(40, 25%, 8%);
}
.documentation-badDoc .documentation-header-top,
.documentation-badDoc .documentation-header-bottom {
background-color: hsl(40, 75%, 85%);
}
body.skin-theme-clientpref-night .documentation-badDoc .documentation-header-top,
body.skin-theme-clientpref-night .documentation-badDoc .documentation-header-bottom {
background-color: hsl(40, 25%, 12%);
}
.documentation-noDoc {
background-color: hsl(0, 0%, 92%);
}
body.skin-theme-clientpref-night .documentation-noDoc {
background-color: hsl(0, 0%, 8%);
}
.documentation-noDoc .documentation-header-top,
.documentation-noDoc .documentation-header-bottom {
background-color: hsl(0, 0%, 85%);
}
body.skin-theme-clientpref-night .documentation-noDoc .documentation-header-top,
body.skin-theme-clientpref-night .documentation-noDoc .documentation-header-bottom {
background-color: hsl(0, 0%, 12%);
}
@media screen and (max-width: 480px) {
.documentation #documentation-header-tools {
float: none;
margin-left: 0;
display: block;
}
}
/*
[[Category:Template styles]]
*/