about summary refs log tree commit diff stats
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/main/games.scss25
1 files changed, 25 insertions, 0 deletions
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 @@
1// Place all the styles related to the GamesController controller here.
2// They will automatically be included in application.css.
3// You can use Sass (SCSS) here: http://sass-lang.com/
4#games-table {
5 border-spacing: 0;
6 width: 100%;
7
8 tr {
9 &.even {
10 background-color: #fff;
11 }
12
13 &.odd {
14 background-color: #edf;
15 }
16 }
17
18 td {
19 padding: 0.5em;
20 }
21}
22
23.game-progress p {
24 margin: 0;
25}