Difference between revisions of "MediaWiki:Common.css"

From DATA4PT WIKI
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: .contributionscores-wrapper { } .contributionscores-title { background-color: #aaaaaa; margin-bottom: 0px; pa...")
 
 
(2 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 */
.contributionscores-wrapper      { }
+
/* Custom CSS for MediaWiki:Common.css */
.contributionscores-title        { background-color: #aaaaaa; margin-bottom: 0px; padding-left: .4em; }
+
 
.contributionscores .header { background-color: #cccccc; border-bottom: 1px solid #999999; font-weight: bold; }
+
/* Change the font size and color of headings */
.contributionscores .odd        { background-color: #eeeeee; }
+
h1, h2, h3, h4, h5, h6 {
.contributionscores .header td  { padding-left: .2em; padding-right: .2em; }
+
    font-size: 24px;
.contributionscores .content  { padding-left: .2em; padding-right: .2em; }
+
    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 */

Latest revision as of 19:29, 8 October 2023

/* 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 */