aboutsummaryrefslogtreecommitdiff
path: root/app/static/scss/style.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/static/scss/style.scss')
-rw-r--r--app/static/scss/style.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/static/scss/style.scss b/app/static/scss/style.scss
index 7c8760c..801572d 100644
--- a/app/static/scss/style.scss
+++ b/app/static/scss/style.scss
@@ -96,3 +96,28 @@ label+input {
margin: 0 30% 0 4%;
}
+// Tables
+table {
+ border-collapse: collapse;
+ border-spacing: 10px;
+ width: 50%;
+ td {
+ padding-top: 0.5rem;
+ padding-left: 1.5rem;
+ }
+}
+
+td, th {
+ border-left: 1px solid $color-fg;
+ border-bottom: 1px solid $color-fg;
+ width: 1.5rem;
+}
+tr:last-child {
+ td {
+ border-bottom: none;
+ }
+}
+
+td:first-child, th:first-child {
+ border-left: none;
+}