forked from YC/coming-soon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ubuntu
committed
May 5, 2021
0 parents
commit 041d85a
Showing
5 changed files
with
190 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2013 YC | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Coming Soon | ||
=========== | ||
Coming Soon is a simplistic, animated and responsive "coming soon" page. | ||
|
||
- HTML and CSS | ||
- Multi-Browser Support (Up to Date Major Browsers) | ||
- Responsive Design | ||
|
||
[Demo](http://yc.github.io/coming-soon/) | ||
<img src="index.svg" width="960" height="540" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name=viewport content="width=device-width, initial-scale=1"> | ||
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> | ||
<style> | ||
body { margin: 0; padding: 0; } | ||
html { height: 100%; cursor: default; } | ||
body { | ||
font-family: "Roboto", sans-serif; /* Default font */ | ||
width: 100%; height: 100%; | ||
text-align: center; | ||
display: table; | ||
opacity: 1; | ||
animation: fadein 3s forwards; | ||
} | ||
h2 { | ||
font-weight: 300; | ||
margin-bottom: 25px; | ||
} | ||
img { | ||
filter: grayscale(100%); | ||
width: 25%; /* Image width */ | ||
border: 0; /* For IE */ | ||
} | ||
#main { | ||
vertical-align: middle; | ||
display: table-cell; | ||
} | ||
/* Progress bar */ | ||
#progress { | ||
width: 45%; /* Bar width */ | ||
margin: 0 auto; | ||
border-radius: 10px; /* Roundness */ | ||
background-color: #023563; /* Background colour */ | ||
padding: 7px 5px; | ||
/* border: 5px solid #a8a8a8; Border */ | ||
} | ||
#fill { | ||
padding: 2px 0; | ||
background-color: #3490dc; /* Fill colour */ | ||
width: 35%; /* Bar percentage, change text below also */ | ||
border-radius: 25px; /* Roundness */ | ||
animation: proanimate 2s; | ||
} | ||
#barpercent h3 { | ||
color: white; /* Bar percentage text colour */ | ||
margin: 0; padding: 0; | ||
opacity: 1; | ||
animation: fadein 3s forwards; | ||
} | ||
|
||
/* Fades in animation */ | ||
@keyframes fadein { | ||
from { opacity: 0; } | ||
} | ||
/* Animates bar on page load */ | ||
@keyframes proanimate { | ||
from { width: 0%; } | ||
} | ||
|
||
@media screen and (max-width:600px) { | ||
img { | ||
width: 60%; | ||
} | ||
h1 { | ||
font-size: 1.3em; | ||
} | ||
h2 { | ||
margin: 1.1em; | ||
font-size: 1.1em; | ||
} | ||
#progress { | ||
width: 80%; /* Bar width */ | ||
} | ||
} | ||
</style> | ||
<title>Coming Soon</title> | ||
</head> | ||
<body> | ||
<div id="main"> | ||
<img src="logo.png" alt="Logo Image"> | ||
<h1>Realtors Plug Admin Panel</h1> | ||
<h2>We are currently doing some work here. <br/> Checkout <a href="https://realtorsplug.com/en">realtorsplug.com</a> to setup your own real estate website </h2> | ||
<div id="progress"><div id="fill"><div id="barpercent"><h3>35%</h3></div></div></div> | ||
</div> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap" rel="stylesheet"> | ||
</body> | ||
</html> |