[Updated] Hotel Maintenance Page

TesoMayn

Boredom, it vexes me.
Oct 30, 2011
1,482
1,482
I just updated an old maintenance page I found, changed the JS to CSS, and did a few other tweaks.

I don't remember where I originally got this from as it was on an old SSD of mine, probably from 5 years ago lol

This really isn't useful, I was bored so figured I'd do something lol

HTML:
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8"/>
        <title>Under Maintenance</title>
        <style>
            @import url('//fonts.googleapis.com/css2?family=Ubuntu&display=swap');
            @-webkit-keyframes fadeIn { from {opacity: 0; } to { opacity: 1; } }
            @-moz-keyframes fadeIn { from {opacity: 0; } to { opacity: 1; } }
            @keyframes fadeIn { from {opacity: 0; } to { opacity: 1; } }
            body { margin: 0; padding: 0; font-size: 16px; font-family: Ubuntu; color: #fff; background: rgb(0,80,100); overflow: hidden; }
            #overlay { position:absolute; width:100%; height:100%; background: url('https://i.imgur.com/37fCSlp.png') no-repeat 102% 220px; animation: fadeIn 1s ease; -moz-animation: fadeIn 1s ease; -webkit-animation: fadeIn 1s ease; }
            #content { position: absolute; margin: auto; top: 0; right: 0; bottom: 0; left: 0; width: 700px; height: 500px; animation: fadeIn 3s ease-in; }
            #title { clear:both; font-size:52px; margin:15px 0 0 120px; }
            #message { clear:both; font-size:30px; text-align:center; }
            img { width: 200px; clear: both; margin: 0 0 0 240px; }
        </style>
    </head>
    <body>
        <div id="overlay"></div>
        <div id="content">
            <img src="https://i.imgur.com/qBPi5Ja.png" />
            <p id="title">Under Maintenance</p>
            <p id="message">We are currently undergoing maintenance. <br />Please check back later!</p>
        </div>
    </body>
</html>
 

Users who are viewing this thread

Top