Footer: social icons opaque on hover
This commit is contained in:
@@ -88,6 +88,15 @@ $vert-phone-width: 500px;
|
||||
}
|
||||
}// }}}
|
||||
|
||||
@mixin a-no-underline() {// {{{
|
||||
a {
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}// }}}
|
||||
|
||||
// }}} mixins //
|
||||
|
||||
// general elements {{{ //
|
||||
@@ -205,12 +214,17 @@ footer {
|
||||
position: relative;
|
||||
padding-right: $side-padding;
|
||||
// padding-right: .9em;
|
||||
@include a-no-underline();
|
||||
|
||||
img {
|
||||
height: 1.5em;
|
||||
@include vert-margin-rem(.2);
|
||||
padding-left: .5em;
|
||||
opacity: .6;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -486,7 +500,6 @@ header {// {{{
|
||||
// @include vert-padding-rem(0.5);
|
||||
@include a-color($base-sky-blue);
|
||||
width: 100%;
|
||||
min-width: $max-page-width;
|
||||
// @media (min-width: 1200px) {
|
||||
// .container{
|
||||
// min-width: $max-page-width;
|
||||
@@ -667,6 +680,9 @@ header {// {{{
|
||||
p {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
strong {
|
||||
line-height: 1.25em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}// }}}
|
||||
|
||||
@@ -29,9 +29,9 @@ menu:
|
||||
- name: card
|
||||
url: /card
|
||||
weight: 15
|
||||
- name: letter
|
||||
url: /letter
|
||||
weight: 17
|
||||
# - name: letter
|
||||
# url: /letter
|
||||
# weight: 17
|
||||
# - name: credits
|
||||
# url: /credits
|
||||
# weight: 20
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Digital Card"
|
||||
date: 2019-02-11T07:50:51-05:00
|
||||
draft: true
|
||||
draft: false
|
||||
---
|
||||
|
||||
@@ -39,5 +39,4 @@ a single branch.
|
||||
|
||||
[chezmoi]: https://github.com/twpayne/chezmoi
|
||||
|
||||
|
||||
<!--- }}} Setup -->
|
||||
|
||||
Submodule content/letter updated: dd6a79f273...f20fc16b30
@@ -3,19 +3,10 @@ title: "Resume"
|
||||
date: 2019-02-11T07:50:51-05:00
|
||||
draft: false
|
||||
---
|
||||
{{% resume/section overview %}}<!--- {{{ -->
|
||||
|
||||
3<sup>rd</sup> year CS student. Enthusiast of all things
|
||||
Linux and FOSS. Seeking 16-month internship for my PEY
|
||||
co-op program. Looking to gain industry-relevant experience in
|
||||
full-stack web dev, DevOps or system administration.
|
||||
|
||||
{{% /resume/section %}}<!--- }}} -->
|
||||
|
||||
{{% resume/section skills %}}<!--- {{{ -->
|
||||
|
||||
#### Languages
|
||||
- **Bash**, C, **CSS**, C++, **Fish** (shell), Godot, **HTML5**,
|
||||
- **Bash**, **C**, **CSS**, C++, **Fish** (shell), Godot, **HTML5**,
|
||||
**Python**, Java, **Javascript** (ES6), **Sass**
|
||||
|
||||
#### Frameworks
|
||||
@@ -26,8 +17,8 @@ full-stack web dev, DevOps or system administration.
|
||||
|
||||
#### Tools
|
||||
- **Arch Linux**, Android Studio, **Debian**, **Command Line**,
|
||||
**Git**, IntelliJ IDEA, **Pycharm**, **NGINX**, **SFTP**, **SSH**,
|
||||
**Vim**
|
||||
**Git**, IntelliJ IDEA, **Pycharm**, **NGINX**, npm/yarn, **SFTP**,
|
||||
**SSH**, **Vim**
|
||||
|
||||
{{% /resume/section %}}<!--- }}} -->
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div id="about">
|
||||
<h2>Welcome to my site!</h2>
|
||||
<p>
|
||||
I'm Kevin Mok - a 3<sup>rd</sup> year Computer Science
|
||||
I'm Kevin Mok - a Computer Science
|
||||
student at the University of Toronto, and I'm greatly interested in all things Linux and
|
||||
<a href="https://www.gnu.org/philosophy/floss-and-foss.en.html"
|
||||
target="_blank">FOSS/FLOSS</a>.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<div id="print-icon">
|
||||
{{ $type := .Get "type" }}
|
||||
{{ $code := .Get "code" }}
|
||||
{{ $pdfName := print "pdf/kevin-mok-cover-letter-" $code ".pdf" }}
|
||||
{{ $pdfName := print "pdf/kevin-mok-" $type "-" $code ".pdf" }}
|
||||
<a href="{{ $pdfName | relURL }}" target="_blank">
|
||||
<img src="{{ "img/resume/printer.svg" | relURL }}" alt="printer-icon">
|
||||
</a>
|
||||
|
||||
Submodule static/pdf updated: 83a1f5a203...0ea8ba17f3
@@ -38,6 +38,9 @@ const generateTable = (table, data) => {
|
||||
aElem.textContent = elem['shortUrl']
|
||||
cell.appendChild(aElem)
|
||||
break
|
||||
case 'description':
|
||||
cell.innerHTML = elem[key]
|
||||
break
|
||||
case 'repo':
|
||||
aElem.href = elem['repoUrl']
|
||||
aElem.textContent = elem[key]
|
||||
|
||||
Reference in New Issue
Block a user