diff options
| author | Marin Ivanov <[email protected]> | 2024-08-21 00:04:40 +0300 |
|---|---|---|
| committer | Marin Ivanov <[email protected]> | 2024-08-21 00:04:40 +0300 |
| commit | 57bebd16ff7e89bfe5e9089ac4c0a21733675f22 (patch) | |
| tree | 4a3ebefba3e584d956f704f04d9d37e7f8fc87eb /style.css | |
| parent | 869c09a0ed7e7c1fa6a4376cf9acf06e7fecc874 (diff) | |
config and setting fields
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 26 |
1 files changed, 19 insertions, 7 deletions
@@ -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; +} |
