forked from liara-cloud/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabel.css
More file actions
54 lines (50 loc) · 1.05 KB
/
Copy pathlabel.css
File metadata and controls
54 lines (50 loc) · 1.05 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.label--red {
color: #e53e3e;
background-color: #feb2b2;
display: inline-block;
border-radius: 4px;
padding: 2px 8px;
font-family: Arial, Helvetica, sans-serif;
}
.label--green {
color: #38a169;
background-color: #c6f6d5;
display: inline-block;
border-radius: 4px;
padding: 2px 8px;
font-family: Arial, Helvetica, sans-serif;
}
.label--orange {
color: #d69e2e;
background-color: #fefcbf;
display: inline-block;
border-radius: 4px;
padding: 2px 8px;
font-family: Arial, Helvetica, sans-serif;
}
.label--blue {
color: #3182ce;
background-color: #bee3f8;
display: inline-block;
border-radius: 4px;
padding: 2px 8px;
font-family: Arial, Helvetica, sans-serif;
}
.label--default {
color: #555;
background-color: #eee;
display: inline-block;
border-radius: 4px;
padding: 2px 8px;
font-family: Arial, Helvetica, sans-serif;
}
span.code {
border-radius: 4px;
direction: ltr;
letter-spacing: 1px;
margin: 0 4px;
color: #185783;
padding: 0px 8px;
display: inline-block;
background-color: #dbf0ff21;
}