-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmaintain.html
112 lines (95 loc) · 2.66 KB
/
maintain.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Maintain - Viblo</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700"
rel="stylesheet"
/>
<style>
body {
background-color: #c5ddfb;
}
.container {
text-align: center;
padding: 0 15px;
margin-right: auto;
margin-left: auto;
}
.msg {
margin-top: 5rem;
}
.msg span {
display: block;
}
#msg__upper {
color: rgba(107, 113, 123, 255);
font-weight: 500;
}
#msg__lower {
color: rgba(84, 136, 199, 255);
font-weight: bold;
}
#image {
position: absolute;
bottom: 5rem;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
width: 100vh;
}
#image img {
max-width: 100%;
display: block;
max-height: 60vh;
}
@media (min-width: 576px) {
.container {
max-width: 540px;
}
#msg__upper {
font-size: 1.5rem;
}
#msg__lower {
font-size: 4rem;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container {
max-width: 960px;
}
#msg__upper {
font-size: 2.5rem;
}
#msg__lower {
font-size: 5.5rem;
}
}
@media (min-width: 1200px) {
.container {
max-width: 1140px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="msg">
<span id="msg__upper">WE ARE UNDER</span>
<span id="msg__lower">MAINTENCE</span>
</div>
<div id="image">
<img src="assets/object.png" alt="Maintain image" />
</div>
</div>
</body>
</html>