diff options
-rw-r--r-- | _data/news.yml | 2 | ||||
-rw-r--r-- | assets/main.scss | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/_data/news.yml b/_data/news.yml index b73a5e9..455248c 100644 --- a/_data/news.yml +++ b/_data/news.yml @@ -1,7 +1,7 @@ - id: AdBanner content: >- <div> - <div style="font-weight: bold">You don't seem to be using an ad blocker.</div> + <div class="bold">You don't seem to be using an ad blocker.</div> <div>Please consider installing one. I would recommend uBlock Origin.</div> </div> - id: news1 diff --git a/assets/main.scss b/assets/main.scss index 4ff4a71..08fd099 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -71,3 +71,7 @@ hr.postsep { .site-nav { z-index: 10; } + +.bold { + font-weight: bold; +} |