From 440f1386452535f102ac0084cf98d1b8d4adf0ea Mon Sep 17 00:00:00 2001 From: Kevin Mok Date: Fri, 8 Feb 2019 16:32:17 -0500 Subject: [PATCH] Add links to all me equation parts Click on hero title for homepage. Changed tux picture to Arch logo. --- archetypes/default.md | 1 - assets/sass/main.scss | 8 ++++ content/config/_index.md | 40 +++++++++++++++++++ ideas.md | 31 +++++++++----- layouts/partials/hero.html | 5 ++- layouts/partials/me-equation.html | 8 +++- ...s_f300667da4f5b5f84e1a9e0702b2fdde.content | 12 +++++- static/img/arch.svg | 12 ++++++ 8 files changed, 100 insertions(+), 17 deletions(-) create mode 100644 content/config/_index.md create mode 100644 static/img/arch.svg diff --git a/archetypes/default.md b/archetypes/default.md index 2175eb8..b8f77d6 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -2,5 +2,4 @@ title: "{{ replace .Name "-" " " | title }}" date: {{ .Date }} draft: false -layout: --- diff --git a/assets/sass/main.scss b/assets/sass/main.scss index 176b51a..de35fdf 100644 --- a/assets/sass/main.scss +++ b/assets/sass/main.scss @@ -295,6 +295,7 @@ footer { a { text-decoration: none; + width: 70%; } img { @@ -303,7 +304,9 @@ footer { // width: 15vw; // min-width: 25%; // height: 25%; + height: 100%; // height: auto; + // height: 20vw; // object-fit: contain; // flex-basis: 20%; @@ -445,6 +448,11 @@ h1.site-title { margin-top: 0.5em; margin-bottom: 0; + @include a-color($base-sky-blue); + a { + text-decoration: none; + } + @media (max-width: $max-page-width) { font-size: 3em; } diff --git a/content/config/_index.md b/content/config/_index.md new file mode 100644 index 0000000..cbca5f8 --- /dev/null +++ b/content/config/_index.md @@ -0,0 +1,40 @@ +--- +title: "Config" +date: 2019-02-07T05:05:11-05:00 +draft: true +layout: single +--- + +# Kevin's Linux Setup + +![desktop-screenshot](https://i.imgur.com/Fpsr8Fc.png) +*Screenshot from my dual-monitor setup.* + +This repository contains the dotfiles to increase my workflow efficiency. They +are also for my Linux +[rice](https://www.reddit.com/r/unixporn/comments/3iy3wd/stupid_question_what_is_ricing/cukxwog/). + + + +## Main Programs +* **OS**: [Arch Linux](https://www.archlinux.org/) ([packages](txt/nzxt-pkgs.txt)) +``` +> systemd-analyze +Startup finished in 2.341s (kernel) + 1.085s (userspace) = 3.426s +graphical.target reached after 1.085s in userspace +``` +* **Terminal**: [rxvt-unicode-pixbuf](https://www.wikiwand.com/en/Rxvt) +* **Shell**: [Zsh](http://zsh.sourceforge.net/) + [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) +* **Window Manager**: [i3-gaps](https://github.com/Airblader/i3) +* **Editor**: [Neovim](https://github.com/neovim/neovim) ([plugins](dotfiles/.vimrc#L51)) +* **File Manager**: [ranger](https://ranger.github.io/) + + + + +## Setup +I use +[Stow](http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to-manage-your-dotfiles.html) +to symbolically link the configs/dotfiles. + + diff --git a/ideas.md b/ideas.md index 179c95d..469248d 100644 --- a/ideas.md +++ b/ideas.md @@ -1,29 +1,38 @@ # Large -- add CSS grid layout - - add tooltip saying responsive - resume - printable version + - list of things done with diff. langs. +- add CSS grid layout + - add tooltip saying responsive +- articles (ideas) + +- loop through URL sections +- JS snippets? - rewrite CSS in Sass - push to base16 repo -- loop through URL sections - terminal simulator for site - cd/ls diff. pages # Medium -- fav. apps -- credits +- pages + - fav. apps + - contact + - socials in footer? + - linux config + - credits +- SEO +- site stats + - size + - load time # Tiny -- socials in footer? -- shrink font sizing for mobile -- add links to all equation parts -- contact page -- click on name for base URL +- inline fold pairs (CSS) + + ## Archived - about/homepage - typing animation - linux screenshot - fade between two - tux icon - diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index 601e9aa..866247a 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -4,11 +4,12 @@ class="base09">evin] # _ --> - [KKevin Mok] # _ + class="base0e">k] # _ +
- linux-logo + + linux-logo +

+

- uoft-logo + + uoft-logo +

=

diff --git a/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content b/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content index 352a2ae..778c6b9 100644 --- a/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content +++ b/resources/_gen/assets/scss/sass/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content @@ -238,9 +238,11 @@ footer a { align-items: center; /* align vertical */ } #homepage #about .me-equation .equation-part a { - text-decoration: none; } + text-decoration: none; + width: 70%; } #homepage #about .me-equation .equation-part img { width: 70%; + height: 100%; border-radius: 1.1em; display: inline; } #homepage #about .me-equation .equation-part img#gnu { @@ -301,6 +303,14 @@ h1.site-title { color: #d3d0c8; margin-top: 0.5em; margin-bottom: 0; } + h1.site-title a { + color: #66cccc; } + h1.site-title a:visited { + color: #66cccc; } + h1.site-title a:active { + color: #66cccc; } + h1.site-title a { + text-decoration: none; } @media (max-width: 52em) { h1.site-title { font-size: 3em; } } diff --git a/static/img/arch.svg b/static/img/arch.svg new file mode 100644 index 0000000..f57758c --- /dev/null +++ b/static/img/arch.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + +