forked from StateOfCalifornia/DigitalCovid19VaccineRecord-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maintenancepage.html
61 lines (61 loc) · 2.24 KB
/
maintenancepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="https://myvaccinerecord.cdph.ca.gov/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Get a digital copy of your COVID-19 vaccination record" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Public+Sans&display=swap" rel="stylesheet">
<title>Digital Covid-19 Vaccine Record Under Maintenance</title>
</head>
<style>
* {
font-family: 'Public Sans', sans-serif;
}
p {
font-size:1.125rem;
line-height: 1.4em;
}
.maintainance-container {
/* border: 1px solid #22489c; */
text-align: center;
height:100vh;
}
.vaccineLogo {
margin-top: 20px;
}
.maintainance-content {
height:100vh;
display:flex;
justify-content: center;
align-items: center;
}
</style>
<body>
<div class="maintainance-container">
<div class="fluid-container">
<div class="maintainance-image">
<div class="vaccineLogo">
<img
style="align-self: center;"
alt="CDT Logo"
width="58px"
height='62px'
src="https://myvaccinerecord.cdph.ca.gov/imgs/cagovlogov2.png"
/>
<span class='logoDescription' style="font-size: 18px; display: inline-block; padding-left: 17px; color: #22489c; vertical-align: super; font-weight: 700; line-height: 1.3em; text-align: left;">Digital COVID-19 <br /> Vaccine Record</span>
</div>
</div>
<div class="maintainance-content">
<div class="maintainance-article">
<h1 style="color: rgb(240, 103, 36); font-size:2.6em">We'll be back soon</h1>
<p>Site is temporarily unavailable for maintenance. <br/> Please
check back soon. We appreciate your patience!</p>
</div>
</div>
</div>
</div>
</body>
</html>