-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-MinecraftServer.css
71 lines (61 loc) · 1.28 KB
/
MMM-MinecraftServer.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
@font-face {
font-family: 'MinecraftFont';
src: url('fonts/MinecraftRegular.otf');
/* Add additional font properties if needed (e.g., font-weight, font-style) */
}
@font-face {
font-family: 'MinecraftFont';
src: url('fonts/MinecraftBold.otf');
font-weight: bold;
}
.minecraft-card {
font-family: 'MinecraftFont'; /* Use the custom font */
border: 3px solid #aaa;
padding: 20px;
background-color:rgba(50, 50, 50, 0.6);
width: 320px;
color: #aaa;
text-shadow: 2px 2px #000;
text-align: center;
/* Add other styling for card */
}
.minecraft-card .title {
text-align: center;
margin-bottom: 15px;
font-size: 0.9em;
margin: 0;
}
.minecraft-card .players {
text-align: left;
list-style-type: none;
padding: 0;
padding: 0px 25px;
}
.minecraft-card .player-avatar {
height: 22px;
width: auto;
}
.minecraft-card .player-name {
font-size: 0.7em;
color: #aaa;
text-shadow: 2px 2px #000;
}
.minecraft-card .connection-bars {
content: url("assets/connection_bars.png");
height: 14px;
width: auto;
}
.minecraft-card .info {
display: block;
margin-top: 10px;
font-size: 0.5em;
line-height: 1.5em;
}
.minecraft-card .motd {
display: block;
font-size: 0.55em;
font-style: italic;
color: #555;
margin-bottom: 0;
line-height: 1.3em;
}