Template:Documentation/styles.css: Difference between revisions

From OODA WIKI
Jump to navigation Jump to search
AdminIsidore (talk | contribs)
Created page with "{{pp|small=yes}} .documentation, .documentation-metadata { border: 1px solid var(--border-color-base, #a2a9b1); background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; font-style: italic; padding: 0.4em 1em; } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid var(--border-color-base, #a2a9b1); margin-bottom: 1ex; } .documentat..."
 
AdminIsidore (talk | contribs)
No edit summary
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{pp|small=yes}}
.documentation,
.documentation,
.documentation-metadata {
.documentation-metadata {
     border: 1px solid var(--border-color-base, #a2a9b1);
     border: 1px solid #00FF00;
     background-color: #ecfcf4;
    background-color: #000000;
     color: #00FF00;
    font-family: "Courier New", monospace; /* Fallback until font fixed */
     clear: both;
     clear: both;
    padding: 0.5em;
    box-shadow: 0 0 5px #00FF00;
}
}
.documentation {
.documentation {
     margin: 1em 0 0 0;
     margin: 1em 0 0 0;
    padding: 1em;
}
}
.documentation-metadata {
.documentation-metadata {
     margin: 0.2em 0;
     margin: 0.2em 0;
     font-style: italic;
     font-style: italic;
     padding: 0.4em 1em;
     padding: 0.4em 0.5em;
}
}
.documentation-startbox {
.documentation-startbox {
     padding-bottom: 3px;
     padding-bottom: 2px;
     border-bottom: 1px solid var(--border-color-base, #a2a9b1);
     border-bottom: 1px solid #00FF00;
     margin-bottom: 1ex;
     margin-bottom: 0.5ex;
}
}
.documentation-heading {
.documentation-heading {
     font-weight: bold;
     font-weight: bold;
     font-size: 125%;
     font-size: 130%;
    text-transform: uppercase;
    color: #00FF00; /* Ensure visibility */
}
.documentation h2, .documentation h3, .documentation h4 {
    color: #00FF00; /* Green for headers like "Usage" */
    font-family: "Courier New", monospace;
    font-weight: bold;
    margin-top: 0.5em;
}
}
.documentation-clear {
.documentation-clear {
Line 29: Line 39:
.documentation-toolbar {
.documentation-toolbar {
     font-style: normal;
     font-style: normal;
     font-size: 85%;
     font-size: 80%;
    color: #00CC00;
}
}
@media screen {
@media screen {
     html.skin-theme-clientpref-night .documentation,
     html.skin-theme-clientpref-night .documentation,
     html.skin-theme-clientpref-night .documentation-metadata {
     html.skin-theme-clientpref-night .documentation-metadata,
         background-color: #0b1e1c;
    html.skin-theme-clientpref-night .documentation h2,
    html.skin-theme-clientpref-night .documentation h3,
    html.skin-theme-clientpref-night .documentation h4 {
         background-color: #111111;
        color: #00FF00;
        box-shadow: 0 0 5px #00FF00;
     }
     }
}
}
@media screen and (prefers-color-scheme: dark) {
@media screen and (prefers-color-scheme: dark) {
     html.skin-theme-clientpref-os .documentation,
     html.skin-theme-clientpref-os .documentation,
     html.skin-theme-clientpref-os .documentation-metadata {
     html.skin-theme-clientpref-os .documentation-metadata,
         background-color: #0b1e1c;
    html.skin-theme-clientpref-os .documentation h2,
    html.skin-theme-clientpref-os .documentation h3,
    html.skin-theme-clientpref-os .documentation h4 {
         background-color: #111111;
        color: #00FF00;
        box-shadow: 0 0 5px #00FF00;
     }
     }
}
}

Latest revision as of 00:05, 30 August 2025

.documentation,
.documentation-metadata {
    border: 1px solid #00FF00;
    background-color: #000000;
    color: #00FF00;
    font-family: "Courier New", monospace; /* Fallback until font fixed */
    clear: both;
    padding: 0.5em;
    box-shadow: 0 0 5px #00FF00;
}
.documentation {
    margin: 1em 0 0 0;
}
.documentation-metadata {
    margin: 0.2em 0;
    font-style: italic;
    padding: 0.4em 0.5em;
}
.documentation-startbox {
    padding-bottom: 2px;
    border-bottom: 1px solid #00FF00;
    margin-bottom: 0.5ex;
}
.documentation-heading {
    font-weight: bold;
    font-size: 130%;
    text-transform: uppercase;
    color: #00FF00; /* Ensure visibility */
}
.documentation h2, .documentation h3, .documentation h4 {
    color: #00FF00; /* Green for headers like "Usage" */
    font-family: "Courier New", monospace;
    font-weight: bold;
    margin-top: 0.5em;
}
.documentation-clear {
    clear: both;
}
.documentation-toolbar {
    font-style: normal;
    font-size: 80%;
    color: #00CC00;
}
@media screen {
    html.skin-theme-clientpref-night .documentation,
    html.skin-theme-clientpref-night .documentation-metadata,
    html.skin-theme-clientpref-night .documentation h2,
    html.skin-theme-clientpref-night .documentation h3,
    html.skin-theme-clientpref-night .documentation h4 {
        background-color: #111111;
        color: #00FF00;
        box-shadow: 0 0 5px #00FF00;
    }
}
@media screen and (prefers-color-scheme: dark) {
    html.skin-theme-clientpref-os .documentation,
    html.skin-theme-clientpref-os .documentation-metadata,
    html.skin-theme-clientpref-os .documentation h2,
    html.skin-theme-clientpref-os .documentation h3,
    html.skin-theme-clientpref-os .documentation h4 {
        background-color: #111111;
        color: #00FF00;
        box-shadow: 0 0 5px #00FF00;
    }
}