summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/ci/runners.scss
blob: 2b15ab8312947d712810ab4a9552cee569af0136 (plain)
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
.ci-body {
  .runner-state {
    padding: 6px 12px;
    margin-right: 10px;
    color: #FFF;

    &.runner-state-shared {
      background: #32b186;
    }
    &.runner-state-specific {
      background: #3498db;
    }
  }

  .runner-status-online {
    color: green;
  }

  .runner-status-offline {
    color: gray;
  }

  .runner-status-paused {
    color: red;
  }

  .runner {
    .btn {
      padding: 1px 6px;
    }

    h4 {
      font-weight: normal;
    }
  }
}