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

gitlab.com/VincentTam/huginn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Berthault <justin.berthault@zaclys.net>2018-02-13 18:50:56 +0300
committerJustin Berthault <justin.berthault@zaclys.net>2018-02-13 18:50:56 +0300
commiteb469cfe13fc098b9ac208f442d727f84e9b0ca4 (patch)
treea7da6c4bc3ec177306b92a7621ae1d1ab0ba07cf
parent4f7a56741ed58008ca98f65156601ec86cb0a34a (diff)
Add table style
-rw-r--r--static/css/style.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 7422870..398b8c5 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -137,6 +137,28 @@ strong {
#index {
text-align: center;
}
+table,td,th {
+ border: 1px solid #bdbdbd;
+}
+table {
+ width: 95%;
+ margin: 0 0 1.5em;
+ border-collapse: separate;
+ border-spacing: 0;
+ border-width: 1px 0 0 1px;
+}
+thead {
+ background-color: #22272E;
+}
+th {
+ font-weight: 700;
+}
+td,th {
+ border-width: 0 1px 1px 0;
+}
+td,th {
+ padding: 0.375rem;
+}
figure {
max-width: 30%;
margin: auto;