User:Z e n i t gm/common.css

From RimWorld Wiki
Revision as of 01:08, 5 January 2025 by Z e n i t gm (talk | contribs) (Created page with "→‎Global Styles: body { background-color: #1a1d23; color: #fff; font-family: Arial, sans-serif; } →‎Header and Navigation: #header { background-color: #2c3135; b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Global Styles */

body {
 background-color: #1a1d23;
 color: #fff;
 font-family: Arial, sans-serif;
}

/* Header and Navigation */

#header {
 background-color: #2c3135;
 border-bottom: 1px solid #444;
}

#p-personal {
 background-color: #2c3135;
}

#p-views {
 background-color: #2c3135;
}

#p-cactions {
 background-color: #2c3135;
}

/* Content */

#bodyContent {
 background-color: #282a2d;
 padding: 20px;
 border-radius: 10px;
 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Tables */

table {
 background-color: #282a2d;
 border-collapse: collapse;
 width: 100%;
}

th, td {
 border: 1px solid #444;
 padding: 10px;
}

th {
 background-color: #2c3135;
 color: #fff;
}

/* Links */

a {
 color: #337ab7;
 text-decoration: none;
}

a:hover {
 color: #23527c;
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
 color: #337ab7;
}

/* Other Elements */

.infobox {
 background-color: #282a2d;
 border: 1px solid #444;
 padding: 10px;
}

.navbox {
 background-color: #282a2d;
 border: 1px solid #444;
 padding: 10px;
}