69 lines
1.8 KiB
HTML
Executable File
69 lines
1.8 KiB
HTML
Executable File
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Website Under Construction</title>
|
|
<style>
|
|
/* Global styles */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
/* Create a subtle diagonal caution stripe background */
|
|
background: repeating-linear-gradient(
|
|
-45deg,
|
|
#ffeb3b 0,
|
|
#ffeb3b 20px,
|
|
#f5c542 20px,
|
|
#f5c542 40px
|
|
);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
.overlay {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
padding: 40px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
max-width: 500px;
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
margin-bottom: 20px;
|
|
font-size: 2.4rem;
|
|
color: #333;
|
|
}
|
|
p {
|
|
margin-bottom: 20px;
|
|
font-size: 1.2rem;
|
|
color: #555;
|
|
}
|
|
.contact {
|
|
font-size: 1rem;
|
|
color: #555;
|
|
}
|
|
a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="overlay">
|
|
<h1>Under Construction</h1>
|
|
<p>I'm currently working on bringing you an amazing website. Please check back soon!</p>
|
|
<p class="contact">If you have any questions, feel free to <a href="mailto:connect+pp@petruspistor.com">contact me</a>.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|