-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmcstatus.css
88 lines (71 loc) · 1.3 KB
/
mcstatus.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
78
79
80
81
82
83
84
85
86
87
88
.mc-status {
overflow-x: auto;
}
.mc-status-root {
display: inline-block;
background-color: #ffffff;
color: #000000;
border-style: solid;
border-width: 2px;
border-color: #444;
border-radius: 5px;
}
.mc-status-header {
color: inherit;
font-family: monospace;
font-size: 24px;
padding: 10px;
margin: 0;
}
.mc-description {
white-space: pre;
font-family: monospace;
font-size: 18px;
background-color: #000;
color: #bebebe;
width: 53ch;
padding: 10px;
}
.mc-description-bold {
font-weight: bold;
}
.mc-description-italic {
font-style: italic;
}
.mc-description-obfuscated {
color: #ffffff;
background-color: #ffffff;
}
.mc-description-strikethrough {
text-decoration: line-through;
}
.mc-description-underlined {
text-decoration: underline;
}
.mc-players {
color: inherit;
padding: 10px;
font-family: monospace;
font-size: 18px;
}
.mc-players-count {
color: inherit;
margin: 0;
}
.mc-players-list {
color: inherit;
list-style-type: none;
padding: 0;
margin-left: 4ch;
margin-bottom: 0;
}
.mc-players-list > li {
color: inherit;
display: inline;
}
.mc-players-list > li::after {
content: ", ";
}
.mc-players-list > li:last-child::after {
content: "";
}