MediaWiki:Vector.css: Difference between revisions

From Structorica Wiki
Jump to navigation Jump to search
m Protected "MediaWiki:Vector.css": This page is fully protected because it provides interface text on this wiki. ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* Structorica Vector Theme */
/**/
 
:root {
}
 
 
/* Main page elements */
body {
    background-color: var(--background-color-base);
    color: var(--color-base);
}
 
 
 
/* ------------------------------------------- */
 
/* Theme and Width toggle buttons styling */
.theme-toggle-button,
.width-toggle-button {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    margin: 4px 0;
}
body.stw-theme-dark .theme-toggle-button:hover,
body.stw-theme-dark .width-toggle-button:hover,
#p-personal .theme-toggle-button,
#p-personal .width-toggle-button {
    display: inline-block;
    margin: 0 0 0 10px;
    padding: 0.5em;
    font-size: 0.875em;
    line-height: 1;
}
@media screen and (min-width: 1200px) {
    body {
        max-width: 1200px;
        margin: auto;
    }
}

Revision as of 12:33, 30 December 2025

/* Structorica Vector Theme */

:root {
}


/* Main page elements */
body {
    background-color: var(--background-color-base);
    color: var(--color-base);
}



/* ------------------------------------------- */

/* Theme and Width toggle buttons styling */
.theme-toggle-button,
.width-toggle-button {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    margin: 4px 0;
}
body.stw-theme-dark .theme-toggle-button:hover,
body.stw-theme-dark .width-toggle-button:hover,
#p-personal .theme-toggle-button,
#p-personal .width-toggle-button {
    display: inline-block;
    margin: 0 0 0 10px;
    padding: 0.5em;
    font-size: 0.875em;
    line-height: 1;
}
@media screen and (min-width: 1200px) {
    body {
        max-width: 1200px;
        margin: auto;
    }
}