-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
122 lines (109 loc) · 3.05 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
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
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<meta charset="utf-8">
<title>Redirecting to https://service.froggychiu.com</title>
<meta http-equiv="refresh" content="0; URL=https://service.froggychiu.com">
<link rel="canonical" href="https://service.froggychiu.com">
<!--
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Froggy Taipei Error Page</title>
</head>
<body>
<div style="display:none;">::CLOUDFLARE_ERROR_500S_BOX::</div>
<div style="display:none;">::CLOUDFLARE_ERROR_1000S_BOX::</div>
<div style="display:none;">::ALWAYS_ONLINE_NO_COPY_BOX::</div>
<div class="main">
<div class="main-content">
<div class="title">服務維護中</div>
<div class="content">
<p class="h3">台北市議員邱威傑市民服務系統維護中...</p>
</div>
<div>
<p>這<b>絕對</b>不是呱吉烙賽哦^^,但無論如何辦公室還是先跟您致上最高的歉意。</p>
<p>如有任何需求,歡迎在上班時間撥打 02-27297708 分機 7152、7252 聯絡我們!</p>
</div>
</div>
<div class="img-wrapper">
<img class="image" src="https://storage.googleapis.com/froggy-service/frontend/errorPage/%E5%85%A8%E8%BA%AB01%20s.png" alt="froggyImage">
<div class="shadow"></div>
</div>
</div>
</body>
<style>
html,body{
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif;
font-weight: bold;
}
body{
background-image: linear-gradient(#EFCACD, #DE8F95, #C480A2, #B69FC6, #A2CEE5, #FFFFFF);
background-position: center;
background-size: contain;
background-repeat: no-repeat;
overflow: scroll;
flex-direction: column;
}
.main{
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: white
}
.img-wrapper{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
}
img{
width: 80%;
height: 100%;
max-width: 250px;
z-index: 0
}
.shadow{
content: ' ';
position: absolute;
bottom: 0;
width: 70%;
transform: translateX(5px);
height: 10%;
border-radius: 50%;
background-color: rgba(0,0,0,0.3);
z-index: -1;
filter: blur(5px)
}
.main-content{
transform: translateY(calc(5vh));
z-index: 1;
}
.title, .content{
text-align: center;
}
.title{
font-size: 3em;
}
.content{
font-size: 2em;
}
@media (max-width: 480px){
.title{
font-size: 2em;
}
.content{
font-size: 1em;
}
}
</style>
</html>
-->