-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathupdated.html
49 lines (44 loc) · 1.19 KB
/
updated.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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<title>spintest index page</title>
<style>
html, body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
.stuff {
width: 100vw;
}
.icon {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 20vh;
}
a {
display: block;
text-align: center;
}
.title {
margin-top: 10vh;
font-size: 60px;
font-style: bold;
color: blue;
}
.subtext {
margin-top: 5px;
color: silver;
font-size: 12px;
}
</style>
</head>
<body>
<div class="stuff">
<img class="icon" src="https://www.spinnaker.io/assets/images/spinnaker-logo-inline.svg">
<a class="title">It Was Updated!</a>
<a class="subtext">If you're seeing this, you know Spinnaker was able to perform another deployment successfully.</a>
</div>
</body>
</html>