Compare commits

..

2 Commits

Author SHA1 Message Date
ray fbe4dfc667 update text content 2020-02-16 21:29:06 +00:00
ray e83f9be636 make background-image url relative
fixes october-icon.png resource not being found when referenced
absolutely. Caused by baseURL (config.toml) containing a path.
2020-02-16 21:28:01 +00:00
2 changed files with 2 additions and 3 deletions

View File

@ -8,7 +8,7 @@ draft: false
---
**Flow Model Management** is a fictitious modelling agency.
They were created solely for the purpose of giving me an excuse to create their [website](https://flowmm.rayelliott.dev).
They were created solely for the purpose of giving me a reason to create their [website](https://flowmm.rayelliott.dev).
However, despite being imaginary, the owners of Flow Model Management felt that it was about time their business should have an internet presence.

View File

@ -181,7 +181,6 @@ body.colorscheme-dark .avatar img {
}
.cheat-october-list + ul > li > p:first-child::before {
/* list-style-image: url(/images/logos/october-icon.png); */
content: "";
position: absolute;
display: block;
@ -191,5 +190,5 @@ body.colorscheme-dark .avatar img {
right: 0;
background-size: contain;
background-repeat: no-repeat;
background-image: url(/images/logos/october-icon.png);
background-image: url(../images/logos/october-icon.png);
}