From 86abeb41e4e51543704ea6dddbc07f14a5a8e9c2 Mon Sep 17 00:00:00 2001 From: CJSatnarine Date: Thu, 20 Mar 2025 08:00:48 -0400 Subject: [PATCH] found out how to style markown blockquotes --- blog/content/_index.md | 2 -- blog/sass/colours.scss | 2 +- blog/sass/style.scss | 6 ++++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/blog/content/_index.md b/blog/content/_index.md index 58b52c7..28c3391 100644 --- a/blog/content/_index.md +++ b/blog/content/_index.md @@ -6,8 +6,6 @@ Hey... I'm CJ! But you can call me CJ... As you can tell, this website is curren > "In the language of love, words are our soul. We are language - these ruins, our palaces." -

testing testing

- Any way, I'm an aspriring graphics programmer from Waterloo, Ontario. I've got a few weird interests in linguistics, history, maths, 3D animation, game development, and art. Currently, I'm spending a lot of my time learning a lot of things relating to my interests. You can check out my Github to see what I'm up to. diff --git a/blog/sass/colours.scss b/blog/sass/colours.scss index bbad4a7..15e378a 100644 --- a/blog/sass/colours.scss +++ b/blog/sass/colours.scss @@ -3,5 +3,5 @@ $background: #000000; $white: #FFFFFF; $purple: #962FFE; -$pink: #ffa0e3; +$pink: #FFA0E3; $text: #EBD7FF; diff --git a/blog/sass/style.scss b/blog/sass/style.scss index 80936eb..bbb5bde 100644 --- a/blog/sass/style.scss +++ b/blog/sass/style.scss @@ -28,12 +28,14 @@ h1 { color: colours.$purple; } +blockquote > p { + color: colours.$pink; +} + p { color: colours.$text; } -// Shortcodes can be used to customise markdown stuff. - #test { color: colours.$pink; }