-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpills.css
More file actions
66 lines (64 loc) · 1.07 KB
/
pills.css
File metadata and controls
66 lines (64 loc) · 1.07 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
55
56
57
58
59
60
61
62
63
64
65
66
.pill {
font-size: 12px;
font-weight: initial;
line-height: 18px;
padding: 1px 8px;
border: 1px solid;
margin-right: 8px;
color: #A32768;
}
.pill--headless {
color: #C4234A;
border-color: #C4234A;
}
.pill--headless::after {
content: "Headless";
}
.pill--experience {
color: #D3822B;
border-color: #D3822B;
}
.pill--experience::after {
content: "Experience";
}
.pill--commerce {
color: #A32768;
border-color: #A32768;
}
.pill--commerce::after {
content: "Commerce";
}
.pill--lts-update {
color: #5DA7C0;
border-color: #5DA7C0;
}
.pill--lts-update::after {
content: "LTS Update";
}
.pill--new-feature {
color: #2C9445;
border-color: #2C9445;
}
.pill--new-feature::after {
content: "New feature";
}
.pill--feature-launch {
color: #2C9445;
border-color: #2C9445;
}
.pill--feature-launch::after {
content: "Feature launch";
}
.pill--inline:first-of-type {
margin-left: 8px;
}
.pill--new {
margin-right: 15px;
align-self: center;
color: #3562A0;
text-transform: lowercase;
}
div.pills {
float: right;
}
/*# sourceMappingURL=pills.css.map */