diff options
Diffstat (limited to 'app/assets/stylesheets')
| -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; +} | 
