From 264302f6cdc630097e45ac76509da20ea4ccf684 Mon Sep 17 00:00:00 2001 From: horus Date: Tue, 16 Jan 2024 01:12:23 +0100 Subject: changes in design --- public/css/app.css | 16 ++++++++++++++++ public/img/mastodon.svg | 4 ++++ resources/sass/app.scss | 16 ++++++++++++++++ resources/views/about.blade.php | 11 +---------- resources/views/index.blade.php | 16 ++++++++++++++-- resources/views/layouts/app.blade.php | 1 + resources/views/layouts/footer.blade.php | 2 +- resources/views/list.blade.php | 10 ++++++++-- 8 files changed, 61 insertions(+), 15 deletions(-) create mode 100644 public/img/mastodon.svg diff --git a/public/css/app.css b/public/css/app.css index 52f6f99..b287fab 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -10965,3 +10965,19 @@ hr { margin-top: 50px; } +.hn { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -0.125em; + fill: #ff6600; +} + +.mastodon { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -0.125em; +} diff --git a/public/img/mastodon.svg b/public/img/mastodon.svg new file mode 100644 index 0000000..906d6ac --- /dev/null +++ b/public/img/mastodon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/sass/app.scss b/resources/sass/app.scss index f78c4bb..7111267 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -10,3 +10,19 @@ @import 'background'; @import 'navbar'; @import 'utility'; + +.hn { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; + fill: #ff6600; +} +.mastodon { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; +} diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php index 14b62dc..b8547f2 100644 --- a/resources/views/about.blade.php +++ b/resources/views/about.blade.php @@ -4,15 +4,6 @@ html { height: 100%; } -.hn { - display: inline-block; - font-size: inherit; - height: 1em; - overflow: visible; - vertical-align: -.125em; - fill: #ff6600; -} - @endsection @section('content') @@ -48,7 +39,7 @@ If you have feedback, want to report a bug or just say hello, hit me up by e-mai

-You can now also follow on Mastodon @MostDiscussed. +You can now also follow on Mastodon {!! file_get_contents(public_path() . "/img/mastodon.svg") !!} @MostDiscussed to stay up to date.