MediaWiki:Common.css

From DATA4PT WIKI
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.
/* CSS placed here will be applied to all skins */
/* Custom CSS for MediaWiki:Common.css */

/* Change the font size and color of headings */
h1, h2, h3, h4, h5, h6 {
    font-size: 24px;
    color: #333333;
}

/* Style for links */
a {
    text-decoration: none;
    color: #0066cc;
}

/* Style for tables */
table {
    border-collapse: collapse;
    width: 100%;
}

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

th, td {
    padding: 8px;
    text-align: left;
}

/* Custom background color for the header */
#header {
    background-color: #f7f7f7;
}

/* Custom styling for buttons */
.button {
    background-color: #0066cc;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Additional custom styles here */

/* End of custom CSS */