aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/pages/timeline/ConnectionStatusBadge.css
blob: 7fe83b9b533ac40e05a60d380b221702d566154f (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
.connection-status-badge {
  font-size: 0.8em;
  border-radius: 5px;
  padding: 0.1em 1em;
  background-color: #eaf2ff;
}
.connection-status-badge::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  content: "";
  margin-right: 0.6em;
}
.connection-status-badge.success {
  color: #006100;
}
.connection-status-badge.success::before {
  background-color: #006100;
}

.connection-status-badge.warning {
  color: #e4a700;
}

.connection-status-badge.warning::before {
  background-color: #e4a700;
}

.connection-status-badge.danger {
  color: #fd1616;
}

.connection-status-badge.danger::before {
  background-color: #fd1616;
}