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

github.com/cntrump/hugo-notepadium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvvveiii <cntrump@gmail.com>2020-04-17 05:26:41 +0300
committervvveiii <cntrump@gmail.com>2020-04-17 05:26:41 +0300
commit761d9a66a0b6e5d772776a112ba86c16558494c5 (patch)
tree0be72f8cff6e998f6fd38ea26555294cd4ce8b07
parent54c5c5ce994a2223451afc7cc4a6883fa9f13cb0 (diff)
Update table row background colorv2.5.0
-rw-r--r--assets/css/dark-style.css4
-rw-r--r--assets/css/style.css4
2 files changed, 8 insertions, 0 deletions
diff --git a/assets/css/dark-style.css b/assets/css/dark-style.css
index 7b16189..bce6f55 100644
--- a/assets/css/dark-style.css
+++ b/assets/css/dark-style.css
@@ -3,6 +3,10 @@ body {
background-color: #222831;
}
+table tr:nth-child(even){
+ background: #323841;
+}
+
mark,
::selection {
background-color: #515b70;
diff --git a/assets/css/style.css b/assets/css/style.css
index 85eecf6..b848eb5 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -142,6 +142,10 @@ th {
padding: 0;
}
+table tr:nth-child(even){
+ background: #f3f6fa;
+}
+
a {
color: #406599;
text-decoration: none;