diff --git a/index.html b/index.html index 4f00ab55e77..a931b420111 100644 --- a/index.html +++ b/index.html @@ -9,12 +9,16 @@
- + + + +

Recent Posts

- -

There are {{ site.posts | size }} more posts beyond this page

+
+

🚀 There are {{ site.posts | size }} more posts beyond this page 🚀

diff --git a/public/css/custom.css b/public/css/custom.css index 833cf48efb6..cd0d03f6825 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -1,4 +1,4 @@ -.index-button-keep-reading { +.index-page-recent-post { display: block; width: 100%; text-align: center; @@ -7,38 +7,43 @@ text-decoration: none; margin: 0; } + +.index-page-recent-post h1 { + margin: 0; + font-size: 1.5em; /* Increase font size */ + font-weight: bold; /* Make text bold */ + letter-spacing: 1px; /* Slightly increase letter spacing */ + text-transform: uppercase; /* Uppercase letters */ + font-family: 'Montserrat', sans-serif; + color: #333; /* Adjust text color */ + } + +.index-page-keep-reading { + display: block; + width: 100%; + text-align: center; + padding: 10px; + color: #000; /* Adjust text color as needed */ + text-decoration: none; + margin-top: 2em; + } - .index-button-keep-reading:hover { + .index-page-keep-reading:hover { background-color: #f0f0f0; /* Slightly grey background on hover */ } - - .index-button-keep-reading h2 { + .index-page-keep-reading h2 { margin: 0; - font-size: 1em; /* Increase font size */ + font-size: 1.1em; /* Increase font size */ font-weight: bold; /* Make text bold */ letter-spacing: 1px; /* Slightly increase letter spacing */ text-transform: uppercase; /* Uppercase letters */ - font-family: 'Montserrat', sans-serif; /* Use a stylish font */ + font-family: 'Montserrat', sans-serif; color: #333; /* Adjust text color */ - - /* Add a gradient to the text */ - /* background: linear-gradient(45deg, #ff6b6b, #f94d6a); */ - /* -webkit-background-clip: text; - -webkit-text-fill-color: transparent; */ - - /* Add text shadow for depth */ - /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */ } - .index-button-keep-reading h2:hover { - /* Change gradient on hover */ - /* background: linear-gradient(45deg, #f94d6a, #ff6b6b); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - } */ - } + .index-page-keep-reading h2:hover {} .without-underbar { margin: 0; - } \ No newline at end of file + }