Adjust custom color

This commit is contained in:
Alexandre Vicenzi 2020-05-25 23:04:57 +02:00
parent 2451347ebc
commit e194089121
3 changed files with 20 additions and 2 deletions

View File

@ -19,6 +19,9 @@ licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"
builtWith = true
mainSections = ["post"]
## Set custom theme color.
# themeColor = "#fc2803"
[[params.socialIcons]]
icon = "fa-linkedin"
title = "Linkedin"

View File

@ -8,6 +8,20 @@
border-color: {{ . }};
}
.pagination li a {
color: {{ . }};
border: 1px solid {{ . }};
}
.pagination li.active a {
background-color: {{ . }};
}
.pagination li a:hover {
background-color: {{ . }};
opacity: 0.75;
}
footer a,
.content a,
.related-posts li a:hover {

View File

@ -246,12 +246,13 @@ ul.posts {
.pagination li a:hover {
color: #fff;
background: rgba(67, 118, 122, 0.75);
background-color: #49757a;
opacity: 0.75;
}
.pagination li.active a {
color: #fff;
background: #49757a;
background-color: #49757a;
}
.pagination li.disabled a {