diff options
Diffstat (limited to 'public/static/style.css')
| -rw-r--r-- | public/static/style.css | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/public/static/style.css b/public/static/style.css index 1700079..1687616 100644 --- a/public/static/style.css +++ b/public/static/style.css @@ -44,6 +44,16 @@ input { border: 1px solid gray; } +form { + display: flex; + flex-direction: column; + gap: 4px; +} + +.row { + flex-direction: row; +} + .container { width: 100%; min-height: 100vh; @@ -131,6 +141,16 @@ button, color: black; } +button:disabled { + color: gray; +} + +button:disabled:hover { + cursor: not-allowed; + background: lightgray; + color: gray; +} + button:hover, .button:hover { background: #b9b9b9; @@ -319,12 +339,6 @@ a.box:hover { gap: 16px; } -.accman form { - display: flex; - flex-direction: column; - gap: 4px; -} - .accman h1 { font-size: 26px; } |
