MediaWiki:Common.css
From Zero Collective Wiki
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */ /*for more info on editing this page: https://www.hostknox.com/knowledgebase/696/How-to-change-the-font-family-size-and-color-of-text-in-MediaWiki.html#:~:text=You%20can%20change%20the%20size%2C%20color%20and%20font,the%20code%20of%20any%20files%20to%20do%20this. */ body { color: #5a7425; font-size: 14px; font-family: "Roboto"; } /*Edits Page Titles */ #mw_header h1 { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /*Edits All Text of Articles */ #mw_content { color: #5a7425; font-size: 12px; font-family: "Roboto"; background-color: #333333; } /*Edits Paragraphs*/ #mw_content p { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /*Edits Subheading Level 2 (you could cop this for h3 and subsequent*/ #mw_content h2 { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /* all the menu blocks in the left column (Navigation menu, Search block, Tools menu). */ #mw_portlets { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /* the style changes are applied only to the Navigation menu in the left column. That's the menu with the links Main page, Recent changes, etc. */ #p-navigation { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /* changes the font color, size and family only of the title of the Navigation menu */ #p-navigation h3 { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /* applies the changes only to the links in the Navigation menu, excluding the title of the menu. *? #p-navigation .pBody { font-size: 12px; font-family: "Roboto"; } /* changes the style of the Search block in the left column. The only text there is the title of the block so that's the only thing that's affected. The buttons Go and Search that are in the block are not affected. */ #p-search { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /* Tools menu in the left column */ #p-tb { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /* changes the font color, size and family only of the title of the Tools menu. */ #p-tb h3 { color: #5a7425; font-size: 12px; font-family: "Roboto"; } /* applies the style changes only to the links in the Tools menu, excluding the title of the menu. */ #p-tb .pBody { font-size: 12px; font-family: "Roboto"; } /* this changes the style of the user links at the top of the page. These are the links that are located right under the title of the page. For anonymous users these are the links Create account and Log in, and for logged in users: Preferences, Contributions, etc. */ #p-personal { font-size: 12px; font-family: "Roboto"; } /* changes the style of the text of page tabs (e.g. Discussion, Edit, History, Delete, etc.). */ #p-cactions .pBody { font-size: 12px; font-family: "Roboto"; } /* affects the style of the text in the footer (e.g. last modification of the page, Privacy policy link, Disclaimers link, etc.). */ #footer { color: #5a7425; font-size: 12px; font-family: "Roboto"; }