From 2c725fcc4f29df10af64af48a65911ba2d16c052 Mon Sep 17 00:00:00 2001 From: Korbs Date: Thu, 8 Sep 2022 00:54:47 -0400 Subject: [PATCH] Add contact page --- _includes/master/head.html | 2 ++ _layouts/document.html | 2 +- _layouts/home.html | 2 +- _pages/contact.md | 33 +++++++++++++++++++++++++++++++++ _pages/thanks-4-contacting.md | 7 +++++++ assets/css/master.css | 19 +++++++++++++++++-- 6 files changed, 61 insertions(+), 4 deletions(-) create mode 100644 _pages/contact.md create mode 100644 _pages/thanks-4-contacting.md diff --git a/_includes/master/head.html b/_includes/master/head.html index ce2f660..0240efa 100644 --- a/_includes/master/head.html +++ b/_includes/master/head.html @@ -8,4 +8,6 @@ + + diff --git a/_layouts/document.html b/_layouts/document.html index 6333600..23f4009 100644 --- a/_layouts/document.html +++ b/_layouts/document.html @@ -2,7 +2,7 @@ {% include master/header.html %} - + Christmas with Friend

{{page.title}}

diff --git a/_layouts/home.html b/_layouts/home.html index d988ac7..7632ec9 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -11,7 +11,7 @@

Welcome!

I am a 3D artist who primarily works with Minecraft-style creations and renders! You can find out more about me on my FAQ page.

- +
diff --git a/_pages/contact.md b/_pages/contact.md new file mode 100644 index 0000000..c4211e6 --- /dev/null +++ b/_pages/contact.md @@ -0,0 +1,33 @@ +--- +layout: document +title: Contact +permalink: /contact/ +--- + + + + + +
+ + + + + + + + + + +
+ +
\ No newline at end of file diff --git a/_pages/thanks-4-contacting.md b/_pages/thanks-4-contacting.md new file mode 100644 index 0000000..19352fe --- /dev/null +++ b/_pages/thanks-4-contacting.md @@ -0,0 +1,7 @@ +--- +layout: document +title: Thank You +permalink: /contact/thanks/ +--- + +Thank you for contacting me, I'll try to get back to you when I can. \ No newline at end of file diff --git a/assets/css/master.css b/assets/css/master.css index 4c38d89..be300ed 100644 --- a/assets/css/master.css +++ b/assets/css/master.css @@ -39,7 +39,7 @@ button:hover { body { background: rgba(225,228,232,1); - font-family: arial; + font-family: 'Zen Maru Gothic', sans-serif; width: 100%; max-width: var(--max-width); overflow-x: hidden; @@ -186,6 +186,20 @@ td { padding: 10px 0px; } +form { + display: grid; + grid-gap: 6px; +} +input, textarea { + border: none; + padding: 6px 12px; + border-radius: 6px; +} +textarea { + height: 140px; + resize: none; +} + @keyframes banner { from {object-position: 0px 0px;} to {object-position: 0px -240px;} @@ -217,4 +231,5 @@ td { left: 0px !important; width: 100% !important; } -} \ No newline at end of file +} +