diff --git a/credits.php b/credits.php index abfdb69a9..d2dd19e57 100644 --- a/credits.php +++ b/credits.php @@ -23,7 +23,7 @@ $credits = str_replace( // If there is something left, print it out if ($credits) { - site_header("Credits", array("current" => "community")); + site_header("Credits", array("current" => "community", 'css' => array('credits.css'))); echo $credits; site_footer(); } diff --git a/styles/credits.css b/styles/credits.css new file mode 100644 index 000000000..64b7a576e --- /dev/null +++ b/styles/credits.css @@ -0,0 +1,29 @@ +/* Overrides for the default phpcredits() styling in credits.php. */ + +h1 { + margin-bottom: 0.7em; +} + +table { + border-bottom: solid 0.25em #669; + width: 100% !important; +} + +table tr:last-child td, table tr:last-child th { + padding-bottom: 1.6em; +} + +.h:first-child th { + color: #333; + font-size: 1.5em; + font-weight: normal; + line-height: 2em; +} + +th { + text-align: left; +} + +td:first-child, th:first-child { + width: 33%; +}