-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
77 lines (73 loc) · 2.83 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Portal Status</title>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<style>
body {
font-family: 'Open Sans', sans-serif;
margin: 2rem;
background: #111;
color: #FFF;
}
.center-content {
text-align:center;
}
.construction-img {
margin: 0 1rem 1rem;
width: 4rem;
display: inline;
}
.construction-text {
display: inline;
}
.msg-pad {
padding: 1rem;
}
.btn-tacc {
border: 1px solid #1c3664;
background: #1c3664;
color: #DDD;
}
.btn-tacc:hover {
border: 1px solid #FFF;
background: #1c3664;
color: #FFF;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="center-content">
<p>
<img src="./taccLogo.png" class="img-fluid"> </img>
<div>
<img src="./construction_red.svg.png" class="img-fluid construction-img"></img>
<h1 class="text-warning construction-text">PORTAL UNDER MAINTENANCE</h1>
<img src="./construction_red.svg.png" class="img-fluid construction-img"></img>
</div>
<h3 class="bg-danger msg-pad">This portal is temporarily unavailable due to systems maintanance.</h3>
<h4>We apologize for the inconvenience.</h4>
<h4>To check on the current status of TACC services click the button below.</h4>
<a class="btn btn-lg btn-tacc" href="https://tacc.utexas.edu" role="button">TACC</a>
</p>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>