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

github.com/schmanat/hugo-highlights-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArttu Ylhävuori <10089872+areee@users.noreply.github.com>2020-03-29 19:54:36 +0300
committerGitHub <noreply@github.com>2020-03-29 19:54:36 +0300
commitdd358211020af741aa2ccf9979ca2b7e3ca3c4d7 (patch)
tree9a431b3a500ba69b0c23bd876644eeef76510eb5
parent0b68a1f6f471cfd7cd5ca3232a28f96bd8464692 (diff)
a small fix into background-image path
this fixes two 404 errors with overlay.png and bg.jpg images
-rw-r--r--static/css/main.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/css/main.css b/static/css/main.css
index b2ced68..60b6106 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -1312,7 +1312,7 @@
html {
background-color: #313a3d;
background-attachment: fixed, fixed;
- background-image: url("../../images/overlay.png"), url("../../images/bg.jpg");
+ background-image: url("images/overlay.png"), url("images/bg.jpg");
background-position: top left, center center;
background-repeat: repeat, none;
background-size: auto, cover;