diff options
author | Marius Peter <marius.peter@tutanota.com> | 2024-12-31 19:31:37 +0100 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2024-12-31 19:31:37 +0100 |
commit | bcd73c5548666bae7fef57e7e22cb61126308259 (patch) | |
tree | 4a4e54709775344d1b9ffc49ae0689c8f1884d70 /app/assets/stylesheets/components/table.css | |
parent | e03e7b2c3fd8d5bc97d9ca46594ec6dc689bce64 (diff) |
megaPush 😈
Diffstat (limited to 'app/assets/stylesheets/components/table.css')
-rw-r--r-- | app/assets/stylesheets/components/table.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components/table.css b/app/assets/stylesheets/components/table.css new file mode 100644 index 0000000..4d09839 --- /dev/null +++ b/app/assets/stylesheets/components/table.css @@ -0,0 +1,19 @@ +table { + width: 100%; + border-collapse: collapse; + font-family: monospace; +} + +table th, table td { + border: 1px black; + padding: 0.5rem; +} + +table th { + background-color: tomato; + font-weight: bold; +} + +table tbody tr { + background-color: white; +} |