about summary refs log tree commit diff stats
path: root/data/maps/the_repetitive
diff options
context:
space:
mode:
Diffstat (limited to 'data/maps/the_repetitive')
0 files changed, 0 insertions, 0 deletions
'#n50'>50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
// 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;
  }

  thead {
    th {
      border-bottom: 1px solid #aaa;
      text-align: left;
      padding: 0.5em;

      a {
        text-decoration: none;

        &:visited {
          color: blue;
        }
      }

      .current {
        padding-right: 12px;
        background-repeat: no-repeat;
        background-position: right center;

        &.asc {
          background-image: image-url("up_arrow.gif");
        }

        &.desc {
          background-image: image-url("down_arrow.gif");
        }
      }
    }
  }
}

.game-progress p {
  margin: 0;
}

.game-title {
  display: block;

  & + span {
    margin-top: 0.25em;
  }
}

.game-started, .game-finished {
  display: block;
  font-size: 0.8em;
  color: #777;
}

h2#games-title {
  background-color: #d6aeff;
  display: block;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  padding: 0.5em 20px;
  border-top: 1px solid #edf;
  border-bottom: 1px solid #edf;
}