found out how to style markown blockquotes

This commit is contained in:
CJSatnarine
2025-03-20 08:00:48 -04:00
parent b01504d142
commit 86abeb41e4
3 changed files with 5 additions and 5 deletions

View File

@@ -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."
<p id="test"> testing testing </p>
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 <a href="https://github.com/CJSatnarine" target="_blank">Github</a> to see what I'm up to.
<canvas id="canvas"/>

View File

@@ -3,5 +3,5 @@
$background: #000000;
$white: #FFFFFF;
$purple: #962FFE;
$pink: #ffa0e3;
$pink: #FFA0E3;
$text: #EBD7FF;

View File

@@ -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;
}