Initial commit.

This commit is contained in:
Andrew Tomaka 2011-12-05 22:55:00 -05:00
commit aec02a77dd
5 changed files with 195 additions and 0 deletions

102
css/html5reset-1.6.1.css Executable file
View file

@ -0,0 +1,102 @@
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
nav ul {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
/* change colours to suit your needs */
ins {
background-color:#ff9;
color:#000;
text-decoration:none;
}
/* change colours to suit your needs */
mark {
background-color:#ff9;
color:#000;
font-style:italic;
font-weight:bold;
}
del {
text-decoration: line-through;
}
abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}
table {
border-collapse:collapse;
border-spacing:0;
}
/* change border colour to suit your needs */
hr {
display:block;
height:1px;
border:0;
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}
input, select {
vertical-align:middle;
}

44
css/style.css Executable file
View file

@ -0,0 +1,44 @@
html {
}
body {
margin: 0px;
background-color: #a0a0a0;
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
}
input {
background: #fff;
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
padding: 2px 2px;
width: 325px;
border: 2px;
border-color: #b8b8b8 #e2e2e2 #e2e2e2 #b8b8b8;
border-style: solid;
}
input.focus {
background: #ebfdd7;
}
label {
cursor: pointer;
display: block;
margin-bottom: 2px;
color: #000;
font-weight: bold;
}
#wrapper {
width: 380px;
margin: auto;
margin-top: 200px;
}
#

40
index.php Executable file
View file

@ -0,0 +1,40 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Password Generator</title>
<link href="css/html5reset-1.6.1.css" rel="stylesheet" type="text/css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="js/head.min.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<div id="login">
<form action="" method="post" id="generate">
<div class="sepH_a">
<label for="root">Root Domain:</label>
<input type="text" id="root" name="root" />
</div>
<div class="sepH_b">
<label for="master">Master Password:</label>
<input type="password" id="master" name="master" />
</div>
<button type="submit">Generate</button>
</form>
</div>
</div>
<script type="text/javascript">
head.js('https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js');
head.js('js/jquery.corner.min.js');
head.ready(function() {
$('input').corner('round 4px');
});
</script>
</body>
</html>

8
js/head.min.js vendored Executable file

File diff suppressed because one or more lines are too long

1
js/jquery.corner.min.js vendored Executable file

File diff suppressed because one or more lines are too long