summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css26
1 files changed, 19 insertions, 7 deletions
diff --git a/style.css b/style.css
index 334a765..c17bb9e 100644
--- a/style.css
+++ b/style.css
@@ -4,7 +4,9 @@ body {
}
h1, h2, h3 {
- margin: 0;
+ margin: 0 0 0.5em 0;
+ padding: 0.5em 0 0.5em 0;
+ border-bottom: 1px solid #ccc;
}
.container {
@@ -19,7 +21,7 @@ header {
padding: 1em;
}
section {
- padding: 0.5em;
+ padding: 0 1em 0 1em;
}
main {
display: flex;
@@ -34,7 +36,7 @@ section > div {
nav {
display: inline-block;
- /*background-color: #f1f1f1;*/
+ background-color: #f1f1f1;
width: 250px;
}
@@ -73,19 +75,26 @@ nav a:hover:not(.active) {
color: white;
}
-input[type=button] {
+input[type=submit], button {
+ display: inline-block;
background-color: #07a2a0;
- width: 200px;
+ width: 175px;
height: 40px;
- display: block;
border:0;
color:#fff;
}
-input[type=button]:active {
+input[type=submit]:active, button:active {
background-color: #079290;
}
+.settings {
+ margin: 0 0 1em 0;
+}
+table td.title {
+ min-width: 150px;
+}
+
.err {
color: #fff;
background-color: #f00;
@@ -157,3 +166,6 @@ input[type=button]:active {
}
}
+.center {
+ text-align: center;
+}