summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/runners.scss
blob: eec22c5dc960384eb7caae00d6263a462afd4e51 (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
.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;
  }
}