-
{{ page.title }}
-
{{ page.date | date: "%Y-%m-%d" }}
+
+
{{ page.title }}
+
Shot {{ page.date | date: "%Y-%m-%d" }} by Evan Pratten
+
+ {{ content }}
+
diff --git a/src/_sass/default.scss b/src/_sass/default.scss
new file mode 100644
index 0000000..86f4133
--- /dev/null
+++ b/src/_sass/default.scss
@@ -0,0 +1,28 @@
+// Fonts
+@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
+@import url("https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
+
+body {
+ // Keep websites thin!
+ max-width: 800px;
+ margin: auto;
+
+ // Default font
+ font-family: "Overlock", sans-serif;
+
+ // Default background color
+ background-color: #f0f0f0;
+
+ header {
+ }
+
+ main {
+ img {
+ border-radius: 5px;
+ }
+ }
+
+ footer {
+ text-align: center;
+ }
+}
diff --git a/src/_sass/photo.scss b/src/_sass/photo.scss
new file mode 100644
index 0000000..df6c297
--- /dev/null
+++ b/src/_sass/photo.scss
@@ -0,0 +1,56 @@
+@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
+@import url("https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
+
+body {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+
+ width: 100vw;
+ min-height: 100vh;
+ margin: 0;
+ padding: 0;
+
+ font-family: "Overlock", sans-serif;
+ background-color: #f0f0f0;
+
+ main {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ flex-wrap: wrap-reverse;
+
+ &>*{
+ margin: 1em;
+ }
+
+ img {
+ max-width: 800px;
+ border: 5px solid black;
+ }
+
+ div.description {
+
+ @media screen and (min-width: 1300px) {
+ max-width: 400px;
+ }
+ @media screen and (max-width: 1300px) {
+ max-width: 800px;
+ }
+
+ h1 {
+ font-family: "IBM Plex Serif", serif;
+ margin-bottom: 0;
+ }
+
+ span#date {
+ color: gray;
+ text-transform: uppercase;
+
+ a {
+ color: inherit;
+ }
+ }
+ }
+ }
+}
diff --git a/src/assets/css/default_compiled.scss b/src/assets/css/default_compiled.scss
new file mode 100644
index 0000000..ad33392
--- /dev/null
+++ b/src/assets/css/default_compiled.scss
@@ -0,0 +1,4 @@
+---
+---
+
+@use "default";
diff --git a/src/assets/css/photo_compiled.scss b/src/assets/css/photo_compiled.scss
new file mode 100644
index 0000000..91ef421
--- /dev/null
+++ b/src/assets/css/photo_compiled.scss
@@ -0,0 +1,4 @@
+---
+---
+
+@use "photo";