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

github.com/josephhutch/aether.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Hutchinson <hutch7995@gmail.com>2020-10-22 04:46:56 +0300
committerJoe Hutchinson <hutch7995@gmail.com>2020-10-22 04:46:56 +0300
commit5495ce259e0e6850fa48e273e473ea261a49b6ea (patch)
tree921422befea6d278fd73f0c022927fdd32f02a93
parentf222420c120ea0b11bbf55b1bd24e059b225f3e5 (diff)
Fix blob images wrong url
-rw-r--r--assets/css/style.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 12b9fa9..5337f5d 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -24,7 +24,7 @@ p {
flex-direction: column;
z-index: -1;
color: white;
- background-image: url('http://localhost:1313/img/home-blob.svg');
+ background-image: url('/img/home-blob.svg');
background-position: center;
background-size: cover;
}
@@ -448,7 +448,7 @@ footer {
justify-content: space-evenly;
align-items: flex-end;
color: white;
- background-image: url('http://localhost:1313/img/home-blob-flip.svg');
+ background-image: url('/img/home-blob-flip.svg');
background-position: 40% 0%;
background-size: 50rem;
}