diff --git a/content/extras.md b/content/extras.md index ab26668..5132a96 100644 --- a/content/extras.md +++ b/content/extras.md @@ -10,3 +10,5 @@ Welcome to the Extras page (formerly known as the Secret Separator Zoneā„¢). You Funny memes [here](/memes). Onion URL for accessing the site through Tor: [npzqzzlftquidpczleveobajpkgjvszhny23eqot733ea34mxovxgiqd.onion](http://npzqzzlftquidpczleveobajpkgjvszhny23eqot733ea34mxovxgiqd.onion) + +Notices of any downtime, technical issue or migration of the site or related services on this Mastodon account: [@gmgserverstatus@mastodon.world](https://mastodon.world/@gmgserverstatus) diff --git a/themes/hugo-casper3/assets/scss/custom.scss b/themes/hugo-casper3/assets/scss/custom.scss index 53f37be..b41e2a0 100644 --- a/themes/hugo-casper3/assets/scss/custom.scss +++ b/themes/hugo-casper3/assets/scss/custom.scss @@ -44,6 +44,30 @@ font-style: normal } +/* BANNER */ +#banner { + border-radius: 6px; + background-color: #661a16; + padding: 20px; + width: auto; + height: auto; + display: flex; + flex-direction: column; + align-items: center; + justify-content: space-between; + margin-left: 20px; + margin-right: 20px; + margin-bottom: 50px; +} + +#banner:hover img { + display: none; +} + +#banner:hover span { + margin: auto; +} + /* ISSO CSS */ #isso-thread { diff --git a/themes/hugo-casper3/assets/scss/main.scss b/themes/hugo-casper3/assets/scss/main.scss index e97c8cd..e3b577a 100644 --- a/themes/hugo-casper3/assets/scss/main.scss +++ b/themes/hugo-casper3/assets/scss/main.scss @@ -716,7 +716,7 @@ h5,h6{ } } .posts{ - overflow-x:hidden + overflow-x:visible } .post-feed{ flex-wrap:wrap; diff --git a/themes/hugo-casper3/layouts/index.html b/themes/hugo-casper3/layouts/index.html index 42befaa..8c6f475 100644 --- a/themes/hugo-casper3/layouts/index.html +++ b/themes/hugo-casper3/layouts/index.html @@ -28,6 +28,9 @@
+ {{ $pages := site.RegularPages }} {{ range $index, $element := $pages }}{{ if ne .Params.rss_ignore true }} {{- partial "post-card.html" (dict "context" . "index" $index "home" $.IsHome) -}}