-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (113 loc) · 2.22 KB
/
style.css
File metadata and controls
129 lines (113 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.jumbotron {
text-align: center;
}
.mastfoot {
color: #999; /* IE8 proofing */
color: rgba(255,255,255,.5);
text-align: center;
margin: 30px auto;
}
.mastfoot a {
color: #444;
}
.box {
padding: 5px 20px;
border-radius: 10px;
background-color: rgba(64, 64, 64, 0.75);
box-shadow: 0px 0px 15px rgb(0, 0, 0);
text-shadow: 0 1px 3px rgba(58, 41, 41, 0.5);
color: #fff;
transition: background-color 1s;
margin: 10px 0;
}
.box.online {
background-color: rgba(33, 128, 19, 0.75);
}
.game {
min-height: 150px;
}
.h3, h3 {
font-size: 22px
}
.address {
line-height: 34px;
}
.address > * {
vertical-align: middle;
}
.playerlist {
height: 80px;
overflow-y: auto;
background-color: rgba(255, 255, 255, 0.25);
border-color: rgba(230, 230, 230, 0.25);
columns: 3;
padding: 5px 20px;
}
.name {
display: inline-block;
max-width: calc(100% - 78px); /* 78px is the size of the Offline/Online label */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: bottom;
}
.backgroundImage .item {
position: fixed;
width: 100%; height: 100%;
transition: opacity 2s;
background-size: cover;
filter: blur(5px);
opacity: 0;
z-index: -99;
}
.backgroundImage .active {
opacity:1;
}
a.name {
color: #fff;
text-decoration: underline;
}
.unknown .name {
/*max-width: calc(100% - 101px);*/ /* 101px is the size of the Unknown label */
max-width: 100%;
}
.box .centered {
height: 206px;
display: table-cell;
vertical-align: middle;
text-align: center;
}
.box.error {
background-color: rgba(255, 0, 0, 0.25);
}
.box.error, .box.loading {
display: table;
width: 100%;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
.rotate {
animation: rotation 2s infinite linear;
}
.loadingIndicator {
position: fixed;
top: 0;
left: 0;
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
padding-bottom: 0px;
visibility: hidden;
opacity: 0;
transition: opacity 0.5s, visibility 0.5s 0.5s;
}
.loadingIndicator.active {
visibility: unset;
opacity: 1;
}