From 0aab556131c710fadbe35a49cfccb68d17c276a0 Mon Sep 17 00:00:00 2001
From: Vlad Ionescu <Vlaaaaaaad@users.noreply.github.com>
Date: Tue, 01 May 2018 18:33:59 +0000
Subject: [PATCH] Tables (#13)
---
static/less/style.less | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/static/less/style.less b/static/less/style.less
index a2622c9..716b4fc 100644
--- a/static/less/style.less
+++ b/static/less/style.less
@@ -119,6 +119,31 @@
font-style: italic;
}
+th, td {
+ padding: 1.6rem;
+}
+table {
+ border-collapse: collapse;
+}
+table td, table th {
+ border: 2px solid @darker-fg-color;
+}
+table tr:first-child th {
+ border-top: 0;
+}
+table tr:last-child td {
+ border-bottom: 0;
+}
+table tr td:first-child,
+table tr th:first-child {
+ border-left: 0;
+}
+table tr td:last-child,
+table tr th:last-child {
+ border-right: 0;
+}
+
+
img {
max-width: 100%;
}
--
Gitblit v1.10.0