diff --git a/layouts/index.html b/layouts/index.html index 756e351..9286b3b 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -3,6 +3,30 @@
{{{ contents }}} + + + + + +
diff --git a/partials/header/index.html b/partials/header/index.html index 2dba696..e5a7081 100644 --- a/partials/header/index.html +++ b/partials/header/index.html @@ -12,7 +12,7 @@
- [ sharpshark28@joewroten.com ] (master) ~/portfolio + [ joe@wroten.me ] (master) ~/portfolio
⟩ npm start wow
diff --git a/src/app.scss b/src/app.scss index c6e5c55..e71eadd 100644 --- a/src/app.scss +++ b/src/app.scss @@ -38,6 +38,10 @@ body { } } +a { + cursor: pointer; +} + #logo { margin-top: 2rem; width: 14rem; @@ -191,6 +195,30 @@ video { padding-top: 0; } +#morebio { + visibility: hidden; +} + +#bio { + overflow: hidden; + max-height: 0; + transition: max-height 1s; + + .secondary { + color: $secondary-dark; + } + + img { + width: auto; + float: left; + padding-right: .5em; + } +} + +#morebio:checked + #bio { + max-height: 10em; +} + .posts { list-style-type: none; padding: 0; diff --git a/src/assets/photo.jpg b/src/assets/photo.jpg new file mode 100644 index 0000000..9aaae11 Binary files /dev/null and b/src/assets/photo.jpg differ