-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunder-construction.html
More file actions
63 lines (63 loc) · 1.57 KB
/
under-construction.html
File metadata and controls
63 lines (63 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: repeating-linear-gradient(
45deg,
#ff2020,
#ff2020 40px,
#ffffff 40px,
#ffffff 80px
);
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.container {
background-color: white;
padding: 3rem 5rem;
border: 6px solid black;
box-shadow: 12px 12px 0px rgba(0,0,0,1);
}
h1 {
color: black;
text-transform: uppercase;
margin: 0;
font-size: clamp(2rem, 5vw, 4rem);
font-weight: 900;
letter-spacing: 2px;
text-align: center;
}
.back {
position: absolute;
bottom: 24px;
background: black;
color: white;
padding: 12px 24px;
text-decoration: none;
font-weight: 700;
text-transform: uppercase;
border: 2px solid white;
box-shadow: 4px 4px 0px rgba(255,255,255,0.8);
transition: transform 0.1s, box-shadow 0.1s;
}
.back:hover {
transform: translate(2px, 2px);
box-shadow: 2px 2px 0px rgba(255,255,255,0.8);
}
</style>
</head>
<body>
<div class="container">
<h1>Under Construction</h1>
</div>
<a href="index.html" class="back">Return to Portal</a>
</body>
</html>