diff options
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/images/baboon_cookie_icon.webp | bin | 0 -> 489794 bytes | |||
-rw-r--r-- | app/assets/stylesheets/components/table.css | 19 |
2 files changed, 19 insertions, 0 deletions
diff --git a/app/assets/images/baboon_cookie_icon.webp b/app/assets/images/baboon_cookie_icon.webp Binary files differnew file mode 100644 index 0000000..e822b9c --- /dev/null +++ b/app/assets/images/baboon_cookie_icon.webp 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; +} |