forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 45
/
oopsy_common.css
77 lines (63 loc) · 1.21 KB
/
oopsy_common.css
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
67
68
69
70
71
72
73
74
75
76
77
.mistake-row {
display: flex;
height: 18px;
}
.mistake-icon {
text-align: center;
text-shadow: -1px 0 2px grey, 0 1px 2px grey;
width: 20px;
}
.mistake-icon::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
/* these are icon fonts, so there's no fallback for this */
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
font-family: "Font Awesome 5 Free";
font-weight: 900;
}
.mistake-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.mistake-icon.pull::before {
color: green;
content: "\f04b";
}
.mistake-icon.death::before {
color: red;
content: "\f54c";
}
.mistake-icon.warn::before {
color: yellow;
content: "\f071";
}
.mistake-icon.fail::before {
color: red;
content: "\f05e";
}
.mistake-icon.wipe::before {
color: blue;
content: "\f2ed";
}
.mistake-icon.potion::before {
color: purple;
content: "\f000";
}
.mistake-icon.good::before {
color: green;
content: "\f00c";
}
.mistake-icon.damage::before {
color: white;
content: "\f102";
}
.mistake-icon.heal::before {
color: cyan;
content: "\f0fe";
}
.resize-handle .hide-if-resizing {
display: none;
}