Fixed relative paths

This commit is contained in:
Mr. Stallion 2020-06-19 14:49:07 -05:00
parent 424c32be98
commit 0fea2479a9
2 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ title: F-Chat Rising
email: nope@nope.com
description: >- # this means to ignore newlines until "baseurl:"
A heavily modded F-Chat 3.0 client
baseurl: "" # the subpath of your site, e.g. /blog
baseurl: "/flist-rising" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
github_username: mrstallion
show_downloads: true

View File

@ -15,7 +15,7 @@
height:45px;
text-indent: -5000px;
overflow: hidden;
background: url(../assets/images/mac.png) no-repeat bottom left;
background: url(assets/images/mac.png) no-repeat bottom left;
margin-left: 18px;
background-size: contain;
}
@ -27,18 +27,18 @@
height:45px;
text-indent: -5000px;
overflow: hidden;
background: url(../assets/images/win.png) no-repeat bottom right;
background: url(assets/images/win.png) no-repeat bottom right;
background-size: contain;
}
.mac_download_link:hover {
background: url(../assets/images/mac.png) no-repeat top left;
background: url(assets/images/mac.png) no-repeat top left;
background-size: contain;
filter: brightness(1.2);
}
.win_download_link:hover {
background: url(../assets/images/win.png) no-repeat top right;
background: url(assets/images/win.png) no-repeat top right;
background-size: contain;
filter: brightness(1.2);
}