-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (77 loc) · 1.89 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
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>We'll be back! - IETF</title>
<link href="https://static.ietf.org/fonts/inter/import.css" rel="stylesheet">
<style>
body {
padding: 0;
margin: 0;
font-family: "Inter", serif;
font-optical-sizing: auto;
font-size: 16px;
background-color: #EEE;
background: linear-gradient(45deg, #EEE, #FFF);
height: 100vh;
display: grid;
place-items: center;
}
#content {
margin: auto;
text-align: center;
padding: 2rem;
}
#content img {
width: 90vw;
max-width: 800px;
}
h1 {
font-weight: 500;
color: #3F3D56;
margin: 2rem 0 0 0;
}
h2 {
font-weight: 400;
color: #666;
margin: 1rem 0 0 0;
}
#links {
margin-top: 3rem;
font-size: 14px;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
#links a {
color: #3F3D56;
text-decoration: underline;
margin-bottom: .5rem;
}
#links a + a {
margin-left: 1rem;
}
#links a:hover, #links a:active {
color: #5783BE;
}
</style>
</head>
<body>
<div id="content">
<img src="/images/undraw_setup_wizard_re_nday.svg" alt="Upgrading" />
<h1>This site is currently being upgraded.</h1>
<h2>We'll be back shortly!</h2>
<div id="links">
<a href="https://www.ietf.org/">IETF</a>
<a href="https://www.ietf.org/iesg/">IESG</a>
<a href="https://www.iab.org/">IAB</a>
<a href="https://www.irtf.org/">IRTF</a>
<a href="https://www.ietf.org/llc/">IETF LLC</a>
<a href="https://trustee.ietf.org/">IETF Trust</a>
<a href="https://www.rfc-editor.org/">RFC Editor</a>
<a href="https://www.iana.org/">IANA</a>
</div>
</div>
</body>
</html>