From 1bfc826acd0d4b443ff1052069b97043585df310 Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Sun, 9 Jun 2019 10:00:02 -0700 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ fonts/.keep | 0 images/.keep | 0 index.html | 49 ++++++++++++++++++++++++++++++++++++++++++ scripts/index.js | 0 styles/index.css | 55 ++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 106 insertions(+) create mode 100644 .gitignore create mode 100644 fonts/.keep create mode 100644 images/.keep create mode 100644 index.html create mode 100644 scripts/index.js create mode 100644 styles/index.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ca0973 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store + diff --git a/fonts/.keep b/fonts/.keep new file mode 100644 index 0000000..e69de29 diff --git a/images/.keep b/images/.keep new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html new file mode 100644 index 0000000..dd1f923 --- /dev/null +++ b/index.html @@ -0,0 +1,49 @@ + + + + + + + + + + Nathan Chapman + + + + + + + +
+

Websites by
+ Nathan Chapman

+
+ +
+
+
+

Simple websites. No fluff.

+

Actively avoiding parallax-scrolling, bootstrap, WordPress, Squarespace, and any other main-stream, bloated, monster-of-a-website "framework" designed to accommodate every possible solution known to the wet blanket of clientele.

+

Designing around good writing, typography, and a few visual elements (colors and shapes) to give is some polish.

+

$200 flat fee. Seriously.

+

Contact me at contact@nathanjchapman.com and let's get you a working website.

+
+
+

My Work

+ + +
+
+
+ + + + \ No newline at end of file diff --git a/scripts/index.js b/scripts/index.js new file mode 100644 index 0000000..e69de29 diff --git a/styles/index.css b/styles/index.css new file mode 100644 index 0000000..06c07ef --- /dev/null +++ b/styles/index.css @@ -0,0 +1,55 @@ +@import url('https://fonts.googleapis.com/css?family=Cormorant+Upright|Cormorant'); + +html { + font-size: 22px; +} + +body { + background-color: white; + font-family: 'Cormorant', sans-serif; + font-weight: 400; + line-height: 1.45; + color: #333; + + max-width: 64ch; + margin: 0 auto; + padding-left: 1em; + padding-right: 1em; +} + +p { + margin-bottom: 1.25em; +} + +h1, h2, h3, h4, h5 { + font-size: 1.75em; + margin: 2.75rem 0 1rem; + font-family: 'Cormorant Upright', sans-serif; + font-weight: 700; + line-height: 1.15; +} + +h1 { + margin-top: 0; + /*font-size: 3.052em;*/ +} + +small { + font-size: 0.8em; +} + + +header, +footer { + text-align: center; +} + + +@media all and (max-width: 500px) { + html { + font-size: 17px; + } + body { + line-height: 1.7; + } +} \ No newline at end of file