forked from olton/Metro-UI-CSS
-
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
1 parent
df7381f
commit 0447a44
Showing
1 changed file
with
67 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,67 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<script src="jquery.min.js"></script> | ||
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script> | ||
<link rel="stylesheet" href="css/modern.css" /> | ||
<link rel="stylesheet" href="css/theme-dark.css" /> | ||
<style type="text/css"> | ||
.metrouicss { | ||
background-color:#4A0093; | ||
} | ||
#pwordbox { | ||
position: absolute; | ||
height: 100px; | ||
width: 100px; | ||
left: 50%; | ||
top: 35%; | ||
transform: translate(-50%, -50%); | ||
-webkit-transform: translate(-50%, -50%); | ||
-moz-transform: translate(-50%, -50%); | ||
-ms-transform: translate(-50%, -50%); | ||
} | ||
#imgcont { | ||
position: absolute; | ||
left: -175%; | ||
top: 50%; | ||
transform: translate(-50%, -10%); | ||
-webkit-transform: translate(-50%, -10%); | ||
-moz-transform: translate(-50%, -10%); | ||
-ms-transform: translate(-50%, -10%); | ||
} | ||
#pboxcont { | ||
position: absolute; | ||
left: 0%; | ||
top: 100%; | ||
/* | ||
transform: translate(-50%, -10%); | ||
-webkit-transform: translate(-50%, -10%); | ||
-moz-transform: translate(-50%, -10%); | ||
-ms-transform: translate(-50%, -10%); | ||
*/} | ||
#pwordhint { | ||
color:#E86C19; | ||
font-size:17.5px; | ||
} | ||
</style> | ||
</head> | ||
<body class="metrouicss"> | ||
<div id="pwordbox" > | ||
<div id="imgcont"> | ||
<img src="WIN8.png" /> | ||
</div> | ||
<div id="fieldcont"> | ||
<div id="pboxcont"> | ||
<h1 style="color:white;"><User></h1> | ||
<div class="input-control password span4" id="pworddiv"> | ||
<input type="password" /> | ||
<button class="btn-reveal"></button> | ||
</div> | ||
<div id="pwordhint"> | ||
Hint: <Hint> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
|