Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHauke Stieler <mail@hauke-stieler.de>2021-08-09 00:05:28 +0300
committerHauke Stieler <mail@hauke-stieler.de>2021-08-09 00:05:28 +0300
commit5f01bc951f8e86de0c8aa9c49c1f3900574c3eb5 (patch)
treebdec98de8a3b7b8b93c02697120e514d3b7971e7
parentad679e78ef50a71613543c450fa47f5a6ffaa80f (diff)
parent271cab45b90bf83e87dcca032bc6b98492836d84 (diff)
Merge branch 'dev'v0.7.2
-rw-r--r--static/css/color-theme.css5
-rw-r--r--static/css/main.css12
2 files changed, 17 insertions, 0 deletions
diff --git a/static/css/color-theme.css b/static/css/color-theme.css
index 9423607..e0aac99 100644
--- a/static/css/color-theme.css
+++ b/static/css/color-theme.css
@@ -164,3 +164,8 @@ blockquote {
border: 1px solid #dcedc8;
border-left: 3px solid #9ccc65;
}
+
+/* Table */
+table, th, td {
+ border: 1px solid #bdbdbd;
+}
diff --git a/static/css/main.css b/static/css/main.css
index 29e846f..574a0cd 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -372,3 +372,15 @@ I don't use the default pager-class because I want to use the normal buttons wit
padding: 20px;
margin: 15px 0px;
}
+
+/* Table */
+table {
+ width: 100%;
+ margin: 15px 0px;
+}
+
+table, th, td {
+ border: 1px solid black;
+ border-collapse: collapse;
+ padding: 5px;
+}