diff --git a/blog/content/_index.md b/blog/content/_index.md index 28c3391..aacc80e 100644 --- a/blog/content/_index.md +++ b/blog/content/_index.md @@ -8,7 +8,6 @@ Hey... I'm CJ! But you can call me CJ... As you can tell, this website is curren 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. - ```java class Main { @@ -17,3 +16,6 @@ class Main { } } ``` + + + diff --git a/blog/sass/colours.scss b/blog/sass/colours.scss index 15e378a..4173d3e 100644 --- a/blog/sass/colours.scss +++ b/blog/sass/colours.scss @@ -1,7 +1,16 @@ // This is inspired by the husqy theme on monkeytype.com (https://github.com/monkeytypegame/monkeytype/blob/master/frontend/static/themes/husqy.css). -$background: #000000; +// Colours. $white: #FFFFFF; +$black: #000000; $purple: #962FFE; +$voilet: #1e001e; $pink: #FFA0E3; -$text: #EBD7FF; +$periwinkle: #EBD7FF; +$yoghurt: #d1e6ff; + +// Properties? I'm unsure what to call this. +$background: $black; +$blockquote: $pink; +$text: $periwinkle; +$links: $purple; diff --git a/blog/sass/style.scss b/blog/sass/style.scss index bbb5bde..e130f1d 100644 --- a/blog/sass/style.scss +++ b/blog/sass/style.scss @@ -19,7 +19,7 @@ a:link, a:visited, a:hover, a:active { - color: colours.$purple; + color: colours.$links; background-color: transparent; text-decoration: none; } @@ -29,17 +29,13 @@ h1 { } blockquote > p { - color: colours.$pink; + color: colours.$blockquote; } p { color: colours.$text; } -#test { - color: colours.$pink; -} - center { color: colours.$purple; } diff --git a/blog/templates/base.html b/blog/templates/base.html index 65dca21..1dcbb2b 100644 --- a/blog/templates/base.html +++ b/blog/templates/base.html @@ -21,14 +21,17 @@ + +
Made with Zola
diff --git a/blog/templates/blog-page.html b/blog/templates/blog-page.html index 90cbd66..c3e786e 100644 --- a/blog/templates/blog-page.html +++ b/blog/templates/blog-page.html @@ -1,6 +1,7 @@ {% extends "base.html" %} {% block content %} +