Skip to content

Commit

Permalink
WEB: Create a separate CSS style for the games page
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Nov 4, 2013
1 parent aae1eca commit 9fee571
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions css/games.css
@@ -0,0 +1,29 @@
ul.downloads li.file a {
color: rgb(0, 0, 0);
text-decoration: none;
}

ul.downloads li.file a:hover,
ul.downloads li.link a:hover {
color: rgb(255, 0, 0);
}

ul.downloads span.download-extras {
color: rgb(133, 177, 50);
font-size: x-small;
}

ul.downloads li.link {
margin-left: 1.5em;
}

ul.downloads li.link a {
color: rgb(170, 51, 51);
text-decoration: underline;
}

span.daily_provider {
display: block;
font-size: 90;
padding-left: 3em;
}
2 changes: 1 addition & 1 deletion include/Pages/GamesPage.php
Expand Up @@ -16,7 +16,7 @@ public function index() {
$downloads = GamesModel::getAllDownloads();
$sections = GamesModel::getAllSections();

$this->addCSSFiles('downloads.css');
$this->addCSSFiles('games.css');
return $this->renderPage(
array(
'title' => 'Games',
Expand Down

0 comments on commit 9fee571

Please sign in to comment.