blob: db495e22d906d1c3d03c06566601bbaa13d69dcc (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 {
    &.odd {
      background-color: #fff;
    }
    &.even {
      background-color: #edf;
    }
  }
  td {
    padding: 0.5em;
  }
}
.game-progress p {
  margin: 0;
}
 |