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

github.com/bake/solar-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbake <bake@192k.pw>2019-05-26 14:14:57 +0300
committerbake <bake@192k.pw>2019-05-26 14:14:57 +0300
commit09b0acb2081b6df99011171dfa2cce88fa08c7fa (patch)
tree3cea5b212142de79cc4041eda212a32db92d5ece
parent67fb222ddfd0bb65cffa00e5239b15a24aaf19aa (diff)
Make selection visible in light theme
-rwxr-xr-xstatic/css/colors-dark.css4
-rw-r--r--static/css/colors-gray.css4
-rwxr-xr-xstatic/css/colors-light.css4
-rwxr-xr-xstatic/css/style.css7
4 files changed, 13 insertions, 6 deletions
diff --git a/static/css/colors-dark.css b/static/css/colors-dark.css
index 5aeed99..967fa51 100755
--- a/static/css/colors-dark.css
+++ b/static/css/colors-dark.css
@@ -4,6 +4,10 @@ body {
color: #839496;
}
+::selection {
+ background: rgba(255, 255, 255, 0.05);
+}
+
a,
a:visited,
a:active,
diff --git a/static/css/colors-gray.css b/static/css/colors-gray.css
index 9feca2b..4e9ce4f 100644
--- a/static/css/colors-gray.css
+++ b/static/css/colors-gray.css
@@ -4,6 +4,10 @@ body {
color: #839496;
}
+::selection {
+ background: rgba(255, 255, 255, 0.05);
+}
+
a,
a:visited,
a:active,
diff --git a/static/css/colors-light.css b/static/css/colors-light.css
index d4de4d2..ba1631d 100755
--- a/static/css/colors-light.css
+++ b/static/css/colors-light.css
@@ -4,6 +4,10 @@ body {
color: #839496;
}
+::selection {
+ background: rgba(0, 0, 0, 0.05);
+}
+
a,
a:visited,
a:active,
diff --git a/static/css/style.css b/static/css/style.css
index bb725e8..4102c8e 100755
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -108,9 +108,6 @@ figure {
body {
line-height: 1.1;
}
-::selection {
- background: rgba(255, 255, 255, 0.05);
-}
ol,
ul {
list-style: bullet;
@@ -136,7 +133,7 @@ iframe {
/*** Basics ***/
body {
- font-family: Verdana, Sans-Serif;
+ font-family: serif;
font-size: 13px;
line-height: 1.7;
}
@@ -149,7 +146,6 @@ a:visited {
padding: 2px 4px;
}
a:hover {
- background-color: #839496;
color: #000000;
}
@@ -340,7 +336,6 @@ h3 {
#sidebar a {
border: none;
display: block;
- font-family: 'Helvetica Neue', 'Helvetica', Sans-Serif;
font-size: 1.2em;
padding: 0;
}