summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-08-06 10:07:02 +0100
committerVincent Sanders <vince@kyllikki.org>2019-08-06 10:07:35 +0100
commit6a1c64ff7b45dd830bfdb5e1295830b75c531f61 (patch)
tree76d8b13ed9b7429d268724422b581338a374fbe3 /resources
parentea549da8df0ab4ebed2b1f79cd215ac2bd0918e2 (diff)
downloadnetsurf-6a1c64ff7b45dd830bfdb5e1295830b75c531f61.tar.gz
netsurf-6a1c64ff7b45dd830bfdb5e1295830b75c531f61.tar.bz2
improve css formatting in about scheme query handlers
Diffstat (limited to 'resources')
-rw-r--r--resources/internal.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/resources/internal.css b/resources/internal.css
index c72dfac06..f49f1bbfb 100644
--- a/resources/internal.css
+++ b/resources/internal.css
@@ -237,3 +237,32 @@ p.imagecachelist span {
display: table-cell;
}
+/*
+ * authentication styling
+ */
+
+body#authentication form {
+ /* Just to center the form on the page */
+ margin: 0 auto;
+ width: 400px;
+ /* To see the outline of the form */
+ padding: 1em;
+ border: 1px solid #CCC;
+ border-radius: 1em;
+}
+
+body#authentication label {
+ /* To make sure that all labels have the same size and are properly aligned */
+ display: inline-block;
+ width: 90px;
+ text-align: right;
+}
+
+body#authentication input#username, body#authentication input#password {
+/* To give the same size to all text fields */
+ width: 300px;
+ box-sizing: border-box;
+
+ /* To harmonize the look & feel of text field border */
+ border: 1px solid #999;
+}