"ServerStatus"
Bootstrap 3.3.0 Snippet by doghouch

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="jumbotron">
<div class="container">
<h1 class="text-center">Server Status</h1>
</div>
</div>
<br>
<div class="container">
<div class="row clearfix">
<div class="col-md-12 column">
<div class="status-perfect">
<div class="panel-heading">
<div class="panel-title">
<h4>
The system is operating normally.
</h4>
</div>
</div>
</div>
<br>
<div class="status-reduced">
<div class="panel-heading">
<div class="panel-title">
<h4>
The system is operating, but with reduced capacity.
</h4>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
.op {
margin-top: 7px;
}
body {
font-family: 'Roboto', sans-serif;
}
.status-perfect {
background-color: #33CC33;
height: 100%;
width: 100%;
padding-top: 0.5em;
padding-bottom: 0.5em;
color: white;
border-radius: 4px;
font-size: 18px;
}
.status-reduced {
background-color: #33CCFF;
height: 100%;
width: 100%;
padding-top: 0.5em;
padding-bottom: 0.5em;
color: white;
border-radius: 4px;
font-size: 18px;
}
.status-critical {
background-color: #FF0000;
height: 100%;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: