From d0f414da6cbba383ec22e7f59c1c21bea0c26c20 Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Thu, 10 Nov 2022 18:57:22 +0100 Subject: [PATCH] Adding new style tables. --- public/css/styles.scss | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/public/css/styles.scss b/public/css/styles.scss index 6768b8e..a47afc1 100644 --- a/public/css/styles.scss +++ b/public/css/styles.scss @@ -42,15 +42,20 @@ body { height: 100%; width: 100%; table { - padding: 10px; - background: $background_div; - color: $color_div; - border-radius: 10px; + color: $background_div; + background: $color_div; + } + table tbody tr:first-child th { + border-top: 3px solid $background_div; + } + tr td:first-child,tr th:first-child { + border-left: 3px solid $background_div; } th,td { padding-right: 10px; - border: 3px solid $color_div; margin: 0; + border-right: 3px solid $background_div; + border-bottom: 3px solid $background_div; } th,td { font-size: 15px;