aboutsummaryrefslogtreecommitdiff
path: root/src/css
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2019-03-18 21:45:03 -0400
committerMark Powers <markppowers0@gmail.com>2019-03-18 21:45:03 -0400
commit3d682ea13ab9d83f453fa85ea88fc28163c6b259 (patch)
tree6242c313a38e08b52680f29c3807c4f9615fc5bf /src/css
parenteab2c0e7e62c8aef94686b543578049f664fcd3a (diff)
Fix form styles
Diffstat (limited to 'src/css')
-rw-r--r--src/css/styles.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/css/styles.css b/src/css/styles.css
index e3694a8..f9e86ef 100644
--- a/src/css/styles.css
+++ b/src/css/styles.css
@@ -100,6 +100,15 @@ p {
.card img {
width: 400px;
}
+ form input[type=text], input[type=password] {
+ max-width: 600px;
+ }
+ form textarea {
+ max-width: 600px;
+ }
+ form input[type=submit] {
+ margin-left: 0px;
+ }
}
.titlebar {
@@ -158,4 +167,33 @@ p {
.url-table, .ip-table {
width: 30%;
+}
+
+form {
+ width: 85%;
+}
+
+input[type=text], input[type=password] {
+ height:1.5em;
+ width: 100%;
+ display: block;
+ margin-top: 5px;
+}
+
+input[type=submit] {
+ height:2em;
+ width: 50%;
+ margin-top: 5px;
+ margin-left: 25%;
+}
+
+td {
+ padding-right: 10px;
+}
+
+textarea {
+ border-radius: 4px;
+ border: 2px solid var(--background-accent);
+ width: 100%;
+ height: 10em;
} \ No newline at end of file