blob: 98aca430f8c33a7853a93860018d944f1528dafa (
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
26
27
28
29
30
31
32
33
34
35
36
|
// 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;
}
.game-title {
display: block;
margin-bottom: 0.25em;
}
.game-started, .game-finished {
display: block;
font-size: 0.8em;
color: #777;
}
|