From f704ba6e6ce93f45aee87256b602c79537fa3171 Mon Sep 17 00:00:00 2001 From: Ben Date: Sat, 19 Mar 2022 19:18:45 +0000 Subject: [PATCH] Update skills and a bit of a content refresher --- README.md | 25 +++- assets/sass/app.scss | 3 + assets/sass/components.scss | 21 +++ assets/sass/overrides.scss | 8 + components/core/Block.vue | 4 +- components/core/Header.vue | 16 ++ components/sections/home/Projects.vue | 169 +++++++++------------- components/sections/home/Skills.vue | 74 ---------- components/sections/home/SkillsFooter.vue | 16 ++ components/sections/home/SkillsOne.vue | 47 ++++++ components/sections/home/SkillsThree.vue | 19 +++ components/sections/home/SkillsTwo.vue | 34 +++++ components/sections/home/Social.vue | 9 -- components/sections/home/Version.vue | 2 +- pages/index.vue | 12 +- 15 files changed, 266 insertions(+), 193 deletions(-) create mode 100644 assets/sass/overrides.scss create mode 100644 components/core/Header.vue delete mode 100644 components/sections/home/Skills.vue create mode 100644 components/sections/home/SkillsFooter.vue create mode 100644 components/sections/home/SkillsOne.vue create mode 100644 components/sections/home/SkillsThree.vue create mode 100644 components/sections/home/SkillsTwo.vue diff --git a/README.md b/README.md index d06db15..87388c3 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,6 @@ Roadmap for things I would like to change over time. ### Changes -- Change `htop` progress bars into proficiency levels based around technologies, career experience and overall skill set. -- Change the highlighted GitHub repos in `ls -lah ~/git` to newer projects. - Change `history | grep me` into tabbed sections going over my key interest pillars; career, hardware, networking, cars, photography. --- @@ -91,6 +89,29 @@ Any and all project changes for releases should be documented below. Versioning --- +### Version 1.1.1 + +[[Git Changes]](https://github.com/othyn/othyn.com/compare/v1.1.0...v1.1.1) Alteration of skills. + +#### Added + +- More easter eggs. It's the time of year! + +#### Changed + +- Altered the skills section to add up to date skills +- Presentation of skills has been updated to be a much better visual representation + +#### Fixed + +- Nothing. + +#### Removed + +- Discord from social + +--- + ### Version 1.1.0 [[Git Changes]](https://github.com/othyn/othyn.com/compare/v1.0.0...v1.1.0) Re-containerisation into a static NuxtJS image served by NGINX, this will significantly shrink the image and hosting overhead for such a simple site. diff --git a/assets/sass/app.scss b/assets/sass/app.scss index a20c71a..1dac8a3 100644 --- a/assets/sass/app.scss +++ b/assets/sass/app.scss @@ -24,3 +24,6 @@ // Component styling @import 'components'; + +// Override styling +@import 'overrides'; diff --git a/assets/sass/components.scss b/assets/sass/components.scss index 8a69089..ae27ad2 100644 --- a/assets/sass/components.scss +++ b/assets/sass/components.scss @@ -1 +1,22 @@ // Blade components +div.skills { + small { + display: block; + margin-bottom: 25px; + } + + dl { + margin-bottom: 25px; + column-count: 3; + column-width: 250px; + // column-rule: 1px dashed var(--secondary-color); + + dd { + margin-bottom: 5px; + + span { + color: var(--primary-color); + } + } + } +} diff --git a/assets/sass/overrides.scss b/assets/sass/overrides.scss new file mode 100644 index 0000000..a40e88f --- /dev/null +++ b/assets/sass/overrides.scss @@ -0,0 +1,8 @@ +table { + tbody { + td:first-child { + font-weight: inherit; + color: inherit; + } + } +} diff --git a/components/core/Block.vue b/components/core/Block.vue index ca4684c..3ff8eb9 100644 --- a/components/core/Block.vue +++ b/components/core/Block.vue @@ -1,9 +1,7 @@