From 0f71a90f8beed5fa0f1b53a4b5461c1cf502e1a8 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Mon, 27 Aug 2012 21:28:10 -0700 Subject: [PATCH] Initial layout of the options page. Now that login keys persist, the options can be put on a separate page. An as-yet nonfunctional layout for options.html has been added. --- options.html | 23 +++++++++++++++++++++++ options.js | 1 + style-rlg.css | 7 +++++++ 3 files changed, 31 insertions(+) create mode 100644 options.html create mode 100644 options.js diff --git a/options.html b/options.html new file mode 100644 index 0000000..ae7d1a1 --- /dev/null +++ b/options.html @@ -0,0 +1,23 @@ + + + +RLG-Web Options + + + + +

RLG-Web Options

+
+ E-mail + Password +
+
+
E-mail:
+
Save
Cancel
+
+
+
Password:
+
Save
Cancel
+
+ + diff --git a/options.js b/options.js new file mode 100644 index 0000000..9151f55 --- /dev/null +++ b/options.js @@ -0,0 +1 @@ +/* Nothing here yet. */ diff --git a/style-rlg.css b/style-rlg.css index 0d2ae39..890e91c 100644 --- a/style-rlg.css +++ b/style-rlg.css @@ -104,3 +104,10 @@ div#messages > div.warn { div#debug { display: none; } + +/* For options.html */ +div#switch { + margin-bottom: 1em; + padding: 0.4em 0.4em; + text-align: center; +}