From cf4bb3892429c34711c5c9f43aab6c32c75b7ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Barz?= Date: Fri, 1 Feb 2019 17:10:55 +0100 Subject: [PATCH] More modern leaderboard style --- README.md | 4 ++-- assets/css/style.scss | 15 ++++++++++++--- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 66ff306..c1b5b94 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ This repository hosts the following website: --- -Adding new models to the leaderboard ------------------------------------- +Adding a new model to the leaderboard +------------------------------------- If you think an important CNN architecture is missing from the leaderboard on the [ciFAIR page][1] or you have come up with your own architecture outperforming the previous state-of-the-art, we would be happy to accept a pull request from you to update the leaderboard. diff --git a/assets/css/style.scss b/assets/css/style.scss index 25a4a37..8bd9356 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -35,19 +35,28 @@ a.button.download span { table { font-size: 0.9em; margin-bottom: 20px; + border: 0 none; +} + +thead { + border-bottom: 2px solid #404040; } td, th { - border: 1px solid #a0a0a0; + border: 0 none; padding: 0.2em 0.6em; } +th { + font-weight: bold; +} + td { text-align: left; } -th { - font-weight: bold; +tbody tr:nth-child(odd) { + background-color: rgba(255,255,255,0.4); }