From 0bc61a5329a635700a12eb728180ffdc0e59525d Mon Sep 17 00:00:00 2001 From: NinjaCheetah <58050615+NinjaCheetah@users.noreply.github.com> Date: Fri, 13 May 2022 23:30:45 -0400 Subject: [PATCH] Reworked projects page, added new blog article --- 404.html | 94 ++++++++++++++++++- _includes/nav.html | 12 ++- _layouts/blogpost.html | 14 ++- _layouts/nofooter.html | 2 +- _posts/2022-05-13-bootstrap-or-not.html | 11 +++ blog.html | 18 ++-- projects/{ => archived}/automod.html | 0 projects/{ => archived}/c-ref.html | 0 projects/archived/index.html | 34 +++++++ .../{ => archived}/visualbasiccollection.html | 0 projects/contributions.html | 34 +++++++ projects/{ => maintained}/fakeapt.html | 0 projects/maintained/index.html | 35 +++++++ projects/{ => maintained}/mywebsite.html | 0 14 files changed, 235 insertions(+), 19 deletions(-) create mode 100644 _posts/2022-05-13-bootstrap-or-not.html rename projects/{ => archived}/automod.html (100%) rename projects/{ => archived}/c-ref.html (100%) create mode 100644 projects/archived/index.html rename projects/{ => archived}/visualbasiccollection.html (100%) create mode 100644 projects/contributions.html rename projects/{ => maintained}/fakeapt.html (100%) create mode 100644 projects/maintained/index.html rename projects/{ => maintained}/mywebsite.html (100%) diff --git a/404.html b/404.html index 6fb2349..b05b260 100644 --- a/404.html +++ b/404.html @@ -15,8 +15,100 @@ permalink: /404.html .nav ul { background-color: #000000; } + .neonText { + font-family: "Vibur", sans-serif; + color: #fff; + text-shadow: + 0 0 7px #fff, + 0 0 10px #fff, + 0 0 21px #fff, + 0 0 42px #0fa, + 0 0 82px #0fa, + 0 0 92px #0fa, + 0 0 102px #0fa, + 0 0 151px #0fa; + } + @keyframes pulsate0 { + 100% { + /* Larger blur radius */ + text-shadow: + 0 0 4px #fff, + 0 0 11px #fff, + 0 0 19px #fff, + 0 0 40px #0fa, + 0 0 80px #0fa, + 0 0 90px #0fa, + 0 0 100px #0fa, + 0 0 150px #0fa; + } + 0% { + /* A slightly smaller blur radius */ + text-shadow: + 0 0 4px #fff, + 0 0 10px #fff, + 0 0 18px #fff, + 0 0 38px #0fa, + 0 0 73px #0fa, + 0 0 80px #0fa, + 0 0 94px #0fa, + 0 0 140px #0fa; + } + } + + @keyframes pulsate1 { + 100% { + /* Larger blur radius */ + text-shadow: + 0 0 4px #fff, + 0 0 11px #fff, + 0 0 19px #fff, + 0 0 40px #0c1, + 0 0 80px #0c1, + 0 0 90px #0c1, + 0 0 100px #0c1, + 0 0 150px #0c1; + } + 0% { + /* A slightly smaller blur radius */ + text-shadow: + 0 0 4px #fff, + 0 0 10px #fff, + 0 0 18px #fff, + 0 0 38px #0c1, + 0 0 73px #0c1, + 0 0 80px #0c1, + 0 0 94px #0c1, + 0 0 140px #0c1; + } + } + @keyframes pulsate2 { + 100% { + /* Larger blur radius */ + text-shadow: + 0 0 4px #fff, + 0 0 11px #fff, + 0 0 19px #fff, + 0 0 40px #f00, + 0 0 80px #f00, + 0 0 90px #f00, + 0 0 100px #f00, + 0 0 150px #f00; + } + 0% { + /* A slightly smaller blur radius */ + text-shadow: + 0 0 4px #fff, + 0 0 10px #fff, + 0 0 18px #fff, + 0 0 38px #f00, + 0 0 73px #f00, + 0 0 80px #f00, + 0 0 94px #f00, + 0 0 140px #f00; + } + } -
Switching to Bootstrap was quite a big decision because it required me to rework a lot of this site to make it work.
+Using Bootstrap has been something that I've wanted to do for quite a while, really ever since I had first heard about it. The whole concept is neat- it basically does the difficult styling work for you, which means that I can spend more time working on the actual site content, rather than trying to make it look good. It also means that now the site is mobile-optimized, so now you can experience this site no matter what device you're on (unless it's really old or doesn't support current SSL certificates).
+I would like to take a moment to acknowledge what I lost in the transition: themes. While you can style Bootstrap pretty well, it's not something that can be done easily outside of the HTML. That means that themes had to be removed. While I'm a bit disappointed that I can't use the themes I spent a decent amount of time on, I feel like the pros outweigh the cons overall.
+Now, the big question is will I be applying the same changes to the NCX Programming website. The short answer is maybe. I'm probably going to try it out sometime soon and see how it looks. If I like it, I'll go through with it. If not, then it'll stay as it is for the forseeable future. I don't really have any issues with the current styling anyway.
\ No newline at end of file diff --git a/blog.html b/blog.html index 166ee92..3265d59 100644 --- a/blog.html +++ b/blog.html @@ -3,11 +3,15 @@ title: Blog layout: default --- -Where I write things and you read them I guess. Newest on top.
-{{ post.date | date: "%Y-%m-%d" }} ({{ post.author }})
+Where I write things and you read them I guess. Newest on top.
+{{ post.date | date: "%Y-%m-%d" }} ({{ post.author }})
+