diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-29 14:34:16 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-29 14:34:16 -0500 |
commit | f83276462d60b00db62b86cbd905fb6e965c6ba0 (patch) | |
tree | 22f9175b17ae2c18e457d74cd6e135f979937181 | |
parent | d1c1f8b4e7a3b03b146d649d277fbccc64222fe5 (diff) |
Make links and buttons styling more consistent
-rw-r--r-- | webapp/src/default.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/webapp/src/default.css b/webapp/src/default.css index 2c5b3a2..397d94a 100644 --- a/webapp/src/default.css +++ b/webapp/src/default.css @@ -100,9 +100,9 @@ body { max-width: 30em; font-size: 150%; margin: 0 auto; -}; +} -button { +button, a { background: none!important; border: none; padding: 0!important; @@ -113,6 +113,10 @@ button { cursor: pointer; } +button:hover, a:hover { + box-shadow: inset 10em 5em 2em #eee; +} + .sidebar { grid-area: sidebar; display: grid; |