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

github.com/gyorb/hugo-dusk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGyorgy Orban <o.gyorgy@gmail.com>2019-08-30 00:34:17 +0300
committerGyorgy Orban <o.gyorgy@gmail.com>2019-08-30 01:09:59 +0300
commit7bab61a34a7a242b1f06586aac8735c1b273d55a (patch)
treed6ab9e3282048a8bd7b75b8b7db4190cfdb509c3
parente56ad311c66ffe88b3d1371aa3222ece48daf379 (diff)
change the read more link style
use the default text color and underline the link making it a bit less intrusive
-rw-r--r--layouts/partials/theme-colors.css3
-rw-r--r--static/css/color-dark.css2
-rw-r--r--static/css/layout.css4
3 files changed, 5 insertions, 4 deletions
diff --git a/layouts/partials/theme-colors.css b/layouts/partials/theme-colors.css
index 5f65d2e..82ae7ea 100644
--- a/layouts/partials/theme-colors.css
+++ b/layouts/partials/theme-colors.css
@@ -55,7 +55,8 @@ th {
color: {{ .Param "colors.main" }};
}
.post-list .title { color: {{ .Param "colors.main" }}; }
-.rmore { color: {{ .Param "colors.main" }}; }
+.rmore { color: {{ .Param "colors.text" }}; }
+.rmore:hover { color: {{ .Param "colors.main" }}; }
.terms .term a:hover {
text-decoration: underline;
color: {{ .Param "colors.main" }};
diff --git a/static/css/color-dark.css b/static/css/color-dark.css
index 88b4d47..6cf6983 100644
--- a/static/css/color-dark.css
+++ b/static/css/color-dark.css
@@ -29,5 +29,5 @@ th { background: #1D1F21; }
.post-preview .title a{ color: #99cc66; }
.content-item a:hover{ text-decoration: underline; color: #99cc66; }
.post-list .title { color: #99cc66; }
-.rmore { color: #99cc66; }
+.rmore { color: #dbdbdb; }
.terms .term a:hover { text-decoration: underline; color: #99cc66; }
diff --git a/static/css/layout.css b/static/css/layout.css
index f6883a9..1b4fdb7 100644
--- a/static/css/layout.css
+++ b/static/css/layout.css
@@ -355,8 +355,8 @@ th, td {
}
.rmore {
- white-space:nowrap;
- padding: 0 0 0 0.3em;
+ white-space:nowrap;
+ text-decoration: underline;
}
/* terms list */