Add 'Coming Soon' page.
parent
35a7f362f2
commit
0ffcf35662
|
@ -0,0 +1 @@
|
|||
*.psd
|
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.1 KiB |
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>I am pheng.</title>
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="splash">
|
||||
|
||||
<img id="before" src="images/splash.png"></img>
|
||||
<img id="after" src="images/coming-soon.png"></img>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
<footer>
|
||||
</footer>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,46 @@
|
|||
body {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #f55;
|
||||
}
|
||||
|
||||
#container {
|
||||
height: 320px;
|
||||
/*background: #555;*/
|
||||
}
|
||||
|
||||
#splash img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#splash {
|
||||
|
||||
position: absolute;
|
||||
width: 40%;
|
||||
|
||||
margin: 0 0 0 30%;
|
||||
top: 50%;
|
||||
|
||||
}
|
||||
|
||||
#before {
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
#after {
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
top: 0px;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#splash:hover #before {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#splash:hover #after {
|
||||
z-index: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
Loading…
Reference in New Issue