From 7a5d4b86a1d6a4222a5d69992887cf03a89d0449 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 21 Aug 2021 11:18:06 -0400 Subject: [PATCH] Some finishing touches on styles --- content/blog/2020-09-17-Ultralight-writeup.md | 2 +- sass/styles/layout.scss | 19 +++++++- templates/page.html | 43 +++++++++++++++++++ 3 files changed, 62 insertions(+), 2 deletions(-) create mode 100644 templates/page.html diff --git a/content/blog/2020-09-17-Ultralight-writeup.md b/content/blog/2020-09-17-Ultralight-writeup.md index 58ff69c..af58f65 100644 --- a/content/blog/2020-09-17-Ultralight-writeup.md +++ b/content/blog/2020-09-17-Ultralight-writeup.md @@ -2,7 +2,7 @@ layout: page title: "Building a mini maven server" description: "Project overview: The Ultralight maven server" -date: 2020-09-17 11:00:00 +date: 2020-09-17 written: 2020-09-05 tags: project github maven excerpt: >- diff --git a/sass/styles/layout.scss b/sass/styles/layout.scss index 4471b6f..c2a1b7e 100644 --- a/sass/styles/layout.scss +++ b/sass/styles/layout.scss @@ -15,6 +15,16 @@ a { text-decoration: none; } +.yt-embed { + width: 100%; + height: 400px; + + iframe { + width: 100%; + height: 100%; + } +} + .container { max-width: 700px; margin: auto; @@ -23,15 +33,22 @@ a { .profile-card { margin-top: 30px; margin-bottom: 30px; + margin-left: auto; + margin-right: auto; + .row { width: max-content; - max-width: 100vw; + max-width: 95vw; margin: auto; overflow-wrap: normal; .headshot-container { display: inline-block; max-width: 150px; + @media only screen and (max-width: 377px) { + display: block; + margin: auto; + } img { width: 100%; } diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..f25e491 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,43 @@ +{% extends "base.html" %} +{% block title %} +{{page.title}} +{% endblock title %} + +{% block head %} + + +{{ super() }} + +{% if page.extra.uses_katex %} + + +{% endif %} +{% endblock head %} + +{% block profile %} +
+
+ Headshot +
+
+

{{config.extra.name}}

+

+ {{config.extra.profession}} +

+
+
+{% endblock profile %} + +{% block content %} +

+
+

{{page.title}}

+
+ {{page.content | safe}} +
+
+{% endblock content %} \ No newline at end of file