Float the generate button to the right, make the genreated password readonly, and...
authorRobert Sesek <rsesek@google.com>
Sat, 9 Jun 2012 21:10:22 +0000 (17:10 -0400)
committerRobert Sesek <rsesek@google.com>
Sat, 9 Jun 2012 21:10:22 +0000 (17:10 -0400)
core.css
core.html
manifest.json [new file with mode: 0644]

index 82d389e91ad0ca27d021b39010f7cc266bd171c7..161db41d140af291af1d1ce7c5e8218690372b75 100644 (file)
--- a/core.css
+++ b/core.css
 
 body {
   font-family: 'Lucida Grande', Helvetica, Arial, sans-serif;
-  font-size: 1em;
+  font-size: .8em;
+
+  padding: .2em;
+
+  width: 34em;
 }
 
 ol {
@@ -45,11 +49,16 @@ li label {
 
 li input {
   padding: .2em;
-  width: 15em;
-  font-size: .8em;
+  width: 20em;
+  font-size: 1em;
 }
 
 button {
   font-size: 1em;
   padding: .3em;
+  float: right;
+}
+
+.clear {
+  clear: both;
 }
index 91cbd9b3a5ede9718588bec813ca4b2bef7d60cc..2bd95349c05dd3962f35c4bb6faf1953519a203f 100644 (file)
--- a/core.html
+++ b/core.html
@@ -35,7 +35,7 @@
 
         <li>
           <label for="password">Computed Password</label>
-          <input type="text" id="password" />
+          <input type="text" id="password" readonly />
         </li>
 
         <li>
@@ -44,6 +44,8 @@
       </ol>
     </form>
 
+    <div class="clear"></div>
+
     <script type="text/javascript">
       var controller = new SkeletonKey(document);
     </script>
diff --git a/manifest.json b/manifest.json
new file mode 100644 (file)
index 0000000..2b86073
--- /dev/null
@@ -0,0 +1,13 @@
+{
+  "manifest_version": 2,
+
+  "name": "Skeleton Key",
+  "version": "0.1",
+
+  "description": "A secure password generator that uses repeated hashing of your master password and some salt.",
+
+  "browser_action": {
+    "default_title": "Skeleton Key",
+    "default_popup": "core.html"
+  }
+}