-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgg_monitoring_header
112 lines (96 loc) · 1.89 KB
/
gg_monitoring_header
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
<html>
<head>
<meta http-equiv="refresh" content="60">
<style>
div.container {
width: 93.5%;
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
}
div.online-indicator {
display: inline-block;
width: 25px;
height: 25px;
margin-right: 10px;
background-color: #0fcc45;
border-radius: 50%;
position: relative;
}
div.online-indicator span.blink {
display: block;
width: 25px;
height: 25px;
background-color: #0fcc45;
opacity: 0.7;
border-radius: 50%;
animation: blink 1s linear infinite;
}
div.offline-indicator {
display: inline-block;
width: 25px;
height: 25px;
margin-right: 10px;
background-color: #cc0f0f;
border-radius: 50%;
position: relative;
}
div.offline-indicator span.blink {
display: block;
width: 25px;
height: 25px;
background-color: #cc0f0f;
opacity: 0.7;
border-radius: 50%;
animation: blink 1s linear infinite;
}
h2.online-text {
display: inline;
font-family: 'Rubik', sans-serif;
font-weight: 400;
text-shadow: 0px 3px 6px rgba(150, 150, 150, 0.2);
position: relative;
cursor: pointer;
margin-right:5px;
}
.box{
display:block;
margin:10px;
}
/*Animations*/
@keyframes blink {
100% { transform: scale(2, 2);
opacity: 0;
}
}
.box:first-child .online-indicator{
border-radius: 0px;
content: "MGR";
color: #080808;
width: 52px;
margin-right: 37px;
text-align: center;
}
.box:first-child span{
width: 52px !important;
border-radius: 0px !important;
}
.box:first-child .online-indicator::after {
content: "MGR";
position: absolute;
top: 4px;
left: 7px;
}
</style>
<script type="text/javascript">
function load()
{
setInterval(function() {
window.location.reload();
}, 60000);
}
</script>
</head>
<body onload="load()">
<div class="container">