MediaWiki:Timeless.css

From Ages of Conflict
Revision as of 17:19, 15 February 2024 by CrimzonConflict (talk | contribs) (Created page with "→‎All CSS here will be loaded for users of the Timeless skin: →‎Typography: body { font-family: Arial, sans-serif; font-size: 16px; line-height: 1.6; } →‎Page layout: #mw-content-text { max-width: 800px; margin: 0 auto; } →‎Header: #mw-page-base { background-color: #f8f9fa; } #mw-head-base { background-color: #0366d6; color: #fff; padding: 10px 0; } #p-personal { display: none; →‎Hide personal tools: } /* Naviga...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
/* All CSS here will be loaded for users of the Timeless skin */
/* Typography */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Page layout */
#mw-content-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
#mw-page-base {
    background-color: #f8f9fa;
}

#mw-head-base {
    background-color: #0366d6;
    color: #fff;
    padding: 10px 0;
}

#p-personal {
    display: none; /* Hide personal tools */
}

/* Navigation */
#mw-panel {
    background-color: #f8f9fa;
    border-right: 1px solid #ddd;
}

/* Links */
a {
    color: #0366d6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

/* Footer */
#footer {
    background-color: #f8f9fa;
    padding: 10px 0;
}

/* Spacing */
p, ul, ol, dl {
    margin-bottom: 15px;
}