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

github.com/samrobbins85/hugo-developer-portfolio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Robbins <samrobbinsgb@gmail.com>2020-06-30 17:02:10 +0300
committerSam Robbins <samrobbinsgb@gmail.com>2020-06-30 17:02:10 +0300
commit8e529cd448ba661a4798cc22cfba7a0ce428600b (patch)
tree14d927c4eda0f32b004165451791bef97a4c1ad4
parent668fdedcbd247d8c7fe8813c3ea8851f13d955a4 (diff)
Add styling for table
-rw-r--r--layouts/_default/single.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index ed4b5f5..0c076cb 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -66,6 +66,19 @@
width: 90vw;
max-width: 1200px
}
+
+ table {
+ font-family: arial, sans-serif;
+ border-collapse: collapse;
+ width: 100%;
+ }
+
+ td, th {
+ border: 1px solid #dddddd;
+ text-align: left;
+ padding: 8px;
+ }
+
</style>