-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmaintenance.html
70 lines (62 loc) · 1.71 KB
/
maintenance.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Maintenance</title>
<style>
* {
box-sizing: border-box;
}
html {
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
color: #333;
}
body {
min-height: 100%;
padding: 0;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
#maintenance {
margin: auto;
max-width: 560px;
width: 100%;
padding: 1rem;
}
h1 {
font-size: 55px;
font-weight: 700;
margin-top: 0;
margin-bottom: 10px;
color: #151723;
}
h2 {
font-size: 21px;
font-weight: 400;
margin: 0;
text-transform: uppercase;
color: #151723;
}
p {
color: #999fa5;
font-weight: 400;
}
@media only screen and (min-width : 1280px) {
h1 { font-size: 70px; }
h2 { font-size: 25px; }
}
</style>
</head>
<body>
<div id="maintenance">
<h1>Symfony Demo</h1>
<h2>Maintenance</h2>
<p>A maintenance operation is currently in progress. Please come back in a few minutes.</p>
</div>
</body>
</html>