80 lines
1.8 KiB
HTML
80 lines
1.8 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Site Under Maintenance</title>
|
||
|
<style>
|
||
|
body {
|
||
|
background-color: #008080;
|
||
|
font-family: 'Courier New', Courier, monospace;
|
||
|
color: #d0e040;
|
||
|
text-align: center;
|
||
|
padding: 150px;
|
||
|
}
|
||
|
h1 {
|
||
|
font-size: 50px;
|
||
|
color: #ff4500;
|
||
|
}
|
||
|
article {
|
||
|
border: 3px dashed #ff4500;
|
||
|
display: block;
|
||
|
text-align: left;
|
||
|
width: 650px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
background-color: #000080;
|
||
|
}
|
||
|
p {
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
a {
|
||
|
color: #00ff00;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:hover {
|
||
|
color: #ff69b4;
|
||
|
}
|
||
|
.marquee {
|
||
|
height: 25px;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
background-color: #000080;
|
||
|
color: #d0e040;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
.marquee p {
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
line-height: 25px;
|
||
|
text-align: center;
|
||
|
/* Starting position */
|
||
|
transform:translateX(100%);
|
||
|
/* Apply animation to this element */
|
||
|
animation: marquee 15s linear infinite;
|
||
|
}
|
||
|
/* Make it move */
|
||
|
@keyframes marquee {
|
||
|
0% { transform: translateX(100%); }
|
||
|
100% { transform: translateX(-100%); }
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="marquee">
|
||
|
<p>--- THIS WEBSITE IS RIDING THE INFORMATION SUPERHIGHWAY TO IMPROVEMENT ---</p>
|
||
|
</div>
|
||
|
<article>
|
||
|
<h1>BRB... Upgrading Our Flux Capacitor!</h1>
|
||
|
<div>
|
||
|
<p>Greetings, Net Traveler! Our site is currently undergoing some radical improvements. We're tuning our modems and cranking up the bandwidth for a better surfing experience. Hang tight, we'll be back before you can say "World Wide Web"!</p>
|
||
|
<p>— The Totally Tubular Tanyesil</p>
|
||
|
</div>
|
||
|
</article>
|
||
|
<script src="./oneko.js"></script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|