From 7789e2138fc0479846c20bc68d68973636a4a760 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 12 Mar 2019 21:50:00 -0400 Subject: Started game tracker --- app/assets/stylesheets/main/games.scss | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 app/assets/stylesheets/main/games.scss (limited to 'app/assets/stylesheets/main/games.scss') diff --git a/app/assets/stylesheets/main/games.scss b/app/assets/stylesheets/main/games.scss new file mode 100644 index 0000000..5c39701 --- /dev/null +++ b/app/assets/stylesheets/main/games.scss @@ -0,0 +1,25 @@ +// Place all the styles related to the GamesController controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ +#games-table { + border-spacing: 0; + width: 100%; + + tr { + &.even { + background-color: #fff; + } + + &.odd { + background-color: #edf; + } + } + + td { + padding: 0.5em; + } +} + +.game-progress p { + margin: 0; +} -- cgit 1.4.1