From e2a6937fed9987dfb27eee9ab2911d13fbbedc01 Mon Sep 17 00:00:00 2001 From: Aadil Ayub Date: Mon, 15 Jul 2024 16:25:09 +0500 Subject: [PATCH] tweak about page and blog page --- assets/css/custom.css | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/assets/css/custom.css b/assets/css/custom.css index 2bebab6..41aebf8 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -102,13 +102,14 @@ ul.wp-block-navigation.mobile-header-nav li { text-decoration: underline; } -.site-footer a { +.site-footer a:not(.wp-element-button) { text-decoration: none; + border-bottom: none; } .site-footer a:hover, .site-footer a:focus { - text-decoration: underline; + border-bottom: 1px solid; } /* fixing padding for certain elements on front page */ @@ -168,14 +169,16 @@ p.is-style-outline.wp-block-tag-cloud { text-align: center; margin-bottom: 1em; margin-inline: 2em; - background: black; - color: white; + background: var(--wp--preset--color--black); + color: white !important; border-color: black; font-weight: bold; } .wp-block-tag-cloud a:hover { - text-decoration: underline !important; + /* text-decoration: underline !important; */ + background: var(--wp--preset--gradient--violet-to-green); + color: var(--wp--preset--color--black) !important; } .wp-block-search__inside-wrapper { @@ -237,10 +240,11 @@ a.wp-block-tiptip-hyperlink-group-block { display: inline-block; background: url(https://jett.autonomic.zone/wp-content/uploads/2024/06/image.png); height: 290.476px; - width: 366px; + width: 342px; background-size: contain; position: absolute; - bottom: 77px; + bottom: 57px; + background-repeat: no-repeat; } } @@ -312,3 +316,22 @@ a.wp-block-tiptip-hyperlink-group-block { top: 0; left: 0; } + +/* styling links inside body text */ +p a:not(.wp-element-button) { + color: inherit; + font-weight: bold; + font-family: var(--wp--preset--font-family--instrument-sans); + text-decoration: none; + border-bottom: 1px solid; +} + +.principles-box { + min-height: 256px; +} + +@media (max-width: 786px) { + .d-md-none { + display: none !important; + } +}