From 7230e14c55c63e963072d1b78f7e8485859b3347 Mon Sep 17 00:00:00 2001 From: David Blue Date: Tue, 4 May 2021 09:21:01 -0500 Subject: [PATCH] #125 ![Screenshot 2021-05-04 at 09-18-46 Test](https://user-images.githubusercontent.com/43663476/117018118-d5c02a00-acb9-11eb-87b4-177fda02e738.png) This is going to have to suffice for now.... I don't want to waste anymore time trying to figure out what the fuck those partially-visible dividers are behind the Gist. ``` .gist { font-family: proxima-nova-condensed, sans-serif !important; font-weight: 400 !important; font-size: 18px !important; } .gist .gist-meta { font-family: proxima-nova-extra-condensed, sans-serif !important; font-weight: 600 !important; color: #1c0021 !important; } .gist, .gist article, .gist article p { font-family: proxima-nova-condensed, sans-serif !important; font-weight: 400 !important; } .gist .gist-file .gist-data { background: #FFFdeb; !important; border: 1px solid #da2573 !important; border-radius: 1px !important; font-size: 0.85em !important; color: #1c0021 !important; font-family: proxima-nova-condensed, sans-serif !important; font-weight: 400; } .gist, .gist article, .gist article p { white-space: normal !important; } /* .gist .gist-hr { display: hide !important; } */ ``` --- Custom CSS.css | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/Custom CSS.css b/Custom CSS.css index cf426013..4f0fef35 100644 --- a/Custom CSS.css +++ b/Custom CSS.css @@ -218,6 +218,43 @@ article table td, article table th { border-color: #da2573 !important; } + +.gist { + font-family: proxima-nova-condensed, sans-serif !important; + font-weight: 400 !important; + font-size: 18px !important; +} + +.gist .gist-meta { + font-family: proxima-nova-extra-condensed, sans-serif !important; + font-weight: 600 !important; + color: #1c0021 !important; +} + +.gist, .gist article, .gist article p { + font-family: proxima-nova-condensed, sans-serif !important; + font-weight: 400 !important; +} + + +.gist .gist-file .gist-data { + background: #FFFdeb; !important; + border: 1px solid #da2573 !important; + border-radius: 1px !important; + font-size: 0.85em !important; + color: #1c0021 !important; + font-family: proxima-nova-condensed, sans-serif !important; + font-weight: 400; +} + +.gist, .gist article, .gist article p { + white-space: normal !important; +} + +/* .gist .gist-hr { + display: hide !important; +} */ + hr { border: 2px solid red; }