ci_projects.scss 746 Bytes
Newer Older
1 2 3 4 5 6 7 8
.ci-body {
  .project-title {
    margin: 0;
    color: #444;
    font-size: 20px;
    line-height: 1.5;
  }

9
  .builds,
10
  .projects-table {
11 12 13 14 15 16 17 18
    .light {
      border-color: $border-color;
    }

    th, td {
      padding: 10px $gl-padding;
    }

19
    td {
20
      color: $gl-gray;
21
      vertical-align: middle !important;
22 23 24 25 26

      a {
        font-weight: normal;
        text-decoration: none;
      }
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    }
  }

  .commit-info {
    .attr-name {
      margin-right: 5px;
    }

    pre.commit-message {
      background: none;
      padding: 0;
      margin: 0;
      border: none;
      margin: 20px 0;
      border-radius: 0;
    }
  }

  .loading{
    font-size: 20px;
  }
48 49 50 51 52 53

  .ci-charts {
    fieldset {
      margin-bottom: 16px;
    }
  }
54
}