diff --git a/_includes/bitcoin-tv.svg b/_includes/bitcoin-tv.svg index af39f5452..75c442bc6 100644 --- a/_includes/bitcoin-tv.svg +++ b/_includes/bitcoin-tv.svg @@ -1,4 +1,44 @@ - - - - + + Bitcoin TV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_includes/discord.svg b/_includes/discord.svg index 6660c67c8..9c2bf7dd9 100644 --- a/_includes/discord.svg +++ b/_includes/discord.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/_includes/github.svg b/_includes/github.svg index 0bd8e5d61..63a5ea859 100644 --- a/_includes/github.svg +++ b/_includes/github.svg @@ -1,3 +1 @@ - - - +GitHub \ No newline at end of file diff --git a/_includes/nostr.svg b/_includes/nostr.svg index 305e109a2..6b5a837ea 100644 --- a/_includes/nostr.svg +++ b/_includes/nostr.svg @@ -1,3 +1 @@ - - - +Nostr \ No newline at end of file diff --git a/_includes/twitter.svg b/_includes/twitter.svg index 7d729f33a..957a65fbb 100644 --- a/_includes/twitter.svg +++ b/_includes/twitter.svg @@ -1 +1 @@ - +X \ No newline at end of file diff --git a/_includes/youtube.svg b/_includes/youtube.svg index c523a9b1c..1f1474ef5 100644 --- a/_includes/youtube.svg +++ b/_includes/youtube.svg @@ -1 +1 @@ - \ No newline at end of file +YouTube \ No newline at end of file diff --git a/_sass/minima/_base.scss b/_sass/minima/_base.scss index 297532c01..91b296dde 100644 --- a/_sass/minima/_base.scss +++ b/_sass/minima/_base.scss @@ -169,12 +169,24 @@ a { color: var(--link-hover-color); text-decoration: underline; } +} - .social-media-list &:hover { +.social-media-list { + a { + color: #000000; text-decoration: none; - .username { - text-decoration: underline; + svg { + color: inherit; + fill: currentColor; + } + + &:hover { + color: #e77e23; + text-decoration: none; + .username { + text-decoration: underline; + } } } } diff --git a/docker-compose.yml b/docker-compose.yml index cf4675207..d2a8872cc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,10 @@ -version: '3.8' services: - jekyll: - image: jekyll/jekyll:4.2.2 - ports: - - '4000:4000' - volumes: - - '.:/srv/jekyll' - command: jekyll serve + jekyll: + image: jekyll/jekyll:4.2.2 + ports: + - '4000:4000' + volumes: + - '.:/srv/jekyll' + command: > + sh -c 'bundle install && + jekyll serve --host 0.0.0.0 --force_polling --watch'