From 872c81735c5a6b3fd4b7554cbc5cef5634548f29 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 9 Jun 2012 17:10:22 -0400 Subject: [PATCH] Float the generate button to the right, make the genreated password readonly, and tweak font sizes --- core.css | 15 ++++++++++++--- core.html | 4 +++- manifest.json | 13 +++++++++++++ 3 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 manifest.json diff --git a/core.css b/core.css index 82d389e..161db41 100644 --- a/core.css +++ b/core.css @@ -26,7 +26,11 @@ 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; } diff --git a/core.html b/core.html index 91cbd9b..2bd9534 100644 --- a/core.html +++ b/core.html @@ -35,7 +35,7 @@
  • - +
  • @@ -44,6 +44,8 @@ +
    + diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..2b86073 --- /dev/null +++ b/manifest.json @@ -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" + } +} -- 2.22.5