-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
67 lines (62 loc) · 1.15 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
<!DOCTYPE html>
<title>Site Maintenance</title>
<style>
body {
text-align: center;
}
h1 {
font-size: 50px;
color: #42b983;
}
body {
font: 20px Helvetica, sans-serif;
color: #333;
}
article {
display: block;
text-align: center;
width: 650px;
margin: 0 auto;
}
a {
color: #42b983;
text-decoration: none;
}
a:hover {
color: #333;
text-decoration: none;
}
.image {
border: 1px solid #ddd;
border-radius: 10px;
padding: 5px;
width: 70%;
height: 50%;
}
.image:hover:hover {
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
.logo {
width: 10%;
height: 10%;
}
</style>
<article>
<div class="heading">
<h1>We’ll be back soon!</h1>
</div>
<img
src="https://i.imgur.com/iXhiJcw.png"
title="source: imgur.com"
class="image"
/>
<div>
<p>
Sorry for the inconvenience but we’re performing some maintenance at
the moment. If you need to you can always
<a href="mailto:[email protected]">contact us</a>, otherwise
we’ll be back online shortly!
</p>
<p>— Team Circuitverse</p>
</div>
</article>