MediaWiki:Common.css: Difference between revisions

From Terra Invicta Official Wiki
No edit summary
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* SITE COLORS */
/* Grid layout for front page */
/* grid container (large screen) */
.grid-container {
    display: grid;
    grid-template-areas:
        'header header header header header header'
        'middle middle middle middle middle right'
        'middle2 middle2 middle2 middle2 middle2 right'
        'middle3 middle3 middle3 middle3 middle3 right'
        'bottom bottom bottom bottom bottom right';
}


#content { background-color: #38373D; } - changes the background color of the content of articles/pages, including the title of the articles.
/* grid container (medium screen) */
@media only screen and (max-width: 80rem) {
  .grid-container {
    grid-template-areas:  
        'header header header header header header'
        'middle middle middle middle right right'
        'middle2 middle2 middle2 middle2 right right '
        'middle3 middle3 middle3 middle3 middle3 middle3'
        'bottom bottom bottom bottom bottom bottom';
    }
}


#bodyContent { background-color: blue; } - changes the background color of the content of pages, without the title of the pages.
/* grid container (small screen) */
@media only screen and (max-width: 64rem) {
  .grid-container {
    grid-template-areas:  
        'header header header header header header'
        'middle middle middle middle middle middle'
        'middle2 middle2 middle2 middle2 middle2 middle2'
        'middle3 middle3 middle3 middle3 middle3 middle3'
        'right right right right right right'
        'bottom bottom bottom bottom bottom bottom';
    }
}


#firstHeading { background-color: orange; } - changes the background color only of page titles.
/* grid area location classes */
 
.header { grid-area: header; }
#catlinks { background-color: green; } - changes the background color of the area in which are displayed the links to the categories to which the page belongs. If a page is assigned to categories, they are listed exactly under the content of the page in a rectangular container.
.bottom { grid-area: bottom; }
 
.left { grid-area: left; }
#mw-head-base { background-color: #e6ffb4; } - changes the background color at the top of the screen, the area above the page title. It doesn't affect the color of the page tabs (e.g. Discussion, Edit, etc.).
.right { grid-area: right; }
 
.middle { grid-area: middle; }
#mw-panel { background-color: #e6ffb4; } - changes the background color of the menus on the left side of the screen (the area where the links Recent changes, Random page, etc., and the Tools menu are located).
.middle2 { grid-area: middle2; }
 
.middle3 { grid-area: middle3; }
#p-logo { background-color: #e6ffb4; } - sets the background color of the area where the logo is located (the top left corner).
 
#p-navigation { background-color: #e6ffb4; } - this is for the background color of the Navigation menu in the left column. That's the menu with the links Main page, Recent changes, Random page, Help.
 
#p-tb { background-color: #e6ffb4; } - changes the background color of the Tools menu in the left column. Both the title of the menu and the links in it are affected.
 
#p-tb-label { background-color: #e6ffb4; } - changes the background color only of the title of the Tools menu on the left. The color of the actual menu is not changed.
 
#p-tb .body { background-color: #e6ffb4; } - changes the background color of the Tools menu but without changing the background color of the title of the menu.
 
#footer { background-color: #e6ffb4; } - this is for the background color of the footer of the site. This includes the area of the meta links (Privacy policy, Disclaimers, etc.), the information about the last modification of the page and how many times it has been accessed, and the icon "Powered by MediaWiki". All the space that's under the footer to the bottom of the screen is not affected.
 
body { background-color: black; }
 
/* TEXT COLORS */
 
#content { color: white }
 
#content p { color: white }
 
#content h1 { color: white }
 
#content h2 { color: white }
 
/* LINK COLORS */
 
/* standard link colors */
.mw-body-content a:link { color: #E95420 ; } /* normal unvisited links */
.mw-body-content a:link:visited { color: #E95420 ; } /* visited links */
.mw-body-content a:link:active { color: #E95420 ; } /* active links */
.mw-body-content a:link.new { color: #E95420 ; } /* new links */
.mw-body-content a:link.extiw { color: #E95420 ; } /* interwiki links */
.mw-body-content a:link.external { color: #3366BB; } /* external links */
.mw-body-content a:link.stub { color: #772233; } /* hovered links */
 
'.\mediawiki\skins\common\commonElements.css' -> .mw-body a.extiw:visited { color: red }
 
.mw-body-content a:link {color: #E95420}
.mw-body-content a:visited {color: #E95420}
.mw-body-content a:hover {color: #FF00FF}
.mw-body-content a:active {color: #0000FF}

Latest revision as of 10:34, 27 October 2022

/* CSS placed here will be applied to all skins */

/* Grid layout for front page */
/* grid container (large screen) */
.grid-container {
    display: grid;
    grid-template-areas:
        'header header header header header header' 
        'middle middle middle middle middle right' 
        'middle2 middle2 middle2 middle2 middle2 right' 
        'middle3 middle3 middle3 middle3 middle3 right' 
        'bottom bottom bottom bottom bottom right';
} 

/* grid container (medium screen) */
@media only screen and (max-width: 80rem) {
  .grid-container {
    grid-template-areas: 
        'header header header header header header' 
        'middle middle middle middle right right' 
        'middle2 middle2 middle2 middle2 right right ' 
        'middle3 middle3 middle3 middle3 middle3 middle3' 
        'bottom bottom bottom bottom bottom bottom';
    }
}

/* grid container (small screen) */
@media only screen and (max-width: 64rem) {
  .grid-container {
    grid-template-areas: 
        'header header header header header header' 
        'middle middle middle middle middle middle' 
        'middle2 middle2 middle2 middle2 middle2 middle2' 
        'middle3 middle3 middle3 middle3 middle3 middle3' 
        'right right right right right right' 
        'bottom bottom bottom bottom bottom bottom';
    }
}

/* grid area location classes */
.header { grid-area: header; }
.bottom { grid-area: bottom; }
.left { grid-area: left; }
.right { grid-area: right; }
.middle { grid-area: middle; }
.middle2 { grid-area: middle2; }
.middle3 { grid-area: middle3; }