diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-09-06 21:29:37 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-09-06 21:29:37 -0400 |
commit | 77ed77bfa3480a06a3f36b072af5eb8712a1515c (patch) | |
tree | 23d0e676e7bf825fa63e8082e764102a096ea4c0 | |
parent | 92c68e821ee381ee2aa52bdfcbaebdccc76f0870 (diff) |
Style changes
-rw-r--r-- | webapp/src/default.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/webapp/src/default.css b/webapp/src/default.css index 724cce9..bcba7d4 100644 --- a/webapp/src/default.css +++ b/webapp/src/default.css @@ -1,7 +1,7 @@ @charset "utf-8"; body { - background-color: #ceb; + background-color: #eeb; } .hand { @@ -19,19 +19,19 @@ body { .card { min-width: 30px; - min-height: 80px; - border: 1px solid #000; + min-height: 50px; + border-radius: 5px; + border: 2px solid #444; transition: 0.1s; - font-family: Helvetica, sans-serif; - font-size: 30px; - padding: 3px; + font-family: Arial, sans-serif; + font-size: 25px; + padding: 4px; background-color: #fcfcf0; color: #000; - line-height: 90%; + line-height: 85%; } .card div { - width: 30px; display: flex; flex-direction: column; text-align: center; |