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

github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/sass/_partial/_post/content/_table.scss')
-rw-r--r--assets/sass/_partial/_post/content/_table.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/assets/sass/_partial/_post/content/_table.scss b/assets/sass/_partial/_post/content/_table.scss
new file mode 100644
index 0000000..fd0debb
--- /dev/null
+++ b/assets/sass/_partial/_post/content/_table.scss
@@ -0,0 +1,20 @@
+table {
+ display: block;
+ border: none;
+ width: 100%;
+ overflow-x: auto;
+
+ td {
+ background-color: #f0e4e4;
+ border: 3px solid #fff;
+ padding: 5px 15px;
+ }
+
+ th {
+ text-align: left;
+ background-color: #a65b5b;
+ color: #fff;
+ border: 3px solid #fff;
+ padding: 5px 15px;
+ }
+}