-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathholding-page.html
88 lines (88 loc) · 1.98 KB
/
holding-page.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
87
88
<html>
<head>
<style>
body {
margin: 0;
background-color: #fafbfc;
}
.title-bar {
display: flex;
height: 3em;
margin-bottom: 1em;
background-color: #333333;
font-family: "Lato", sans-serif;
margin-bottom: 3em;
}
.title-bar-icon {
margin-left: 3em;
position: relative;
top: 35%;
}
.content-container {
padding-left: 3em;
padding-right: 3em;
}
.content {
display: flex;
border: 0.1em solid #d6d8da;
border-radius: 3px;
height: 5em;
background-color: white;
}
.icon-container {
margin-right: 1em;
height: 5.2em;
width: 5.2em;
background-color: #3b7a9e;
position: relative;
left: -0.1em;
top: -0.1em;
border-radius: 3px;
}
.icon {
position: relative;
top: 20%;
width: 2.8em;
margin-left: 1.2em;
}
.text-container {
font-family: "Lato", sans-serif;
color: #222222;
}
.title {
position: relative;
top: 23%;
font-weight: bold;
border-bottom: 0.1em;
}
.description {
position: relative;
top: 30%;
display: block;
}
</style>
</head>
<body>
<div class="title-bar">
<span>
<img
class="title-bar-icon"
src="eq-author/src/components/Logo/logo.svg"
/>
</span>
</div>
<div class="content-container">
<div class="content">
<span class="icon-container">
<img class="icon" src="eq-author/src/assets/icon-construction.svg" />
</span>
<div class="text-container">
<span class="title">Author offline</span>
<span class="description">
We have taken Author offline for some essential maintenance.
</span>
</div>
</div>
</div>
</body>
</html>