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