From d4f80abb480ea12dfe0f5d67c7b049a4b5f011fe Mon Sep 17 00:00:00 2001 From: ManjaroOne666 Date: Fri, 15 Feb 2019 11:14:36 +0000 Subject: [PATCH] api fallbacks fully implemented --- TODO.md | 24 +++++++++++++ assets/scss/style.scss | 19 ++++++++++ pages/about.vue | 61 +++++++++++++++++---------------- pages/services.vue | 8 ++--- static/img/default-about.jpg | Bin 0 -> 167130 bytes static/img/default-contact.jpg | Bin 0 -> 197522 bytes 6 files changed, 77 insertions(+), 35 deletions(-) create mode 100755 static/img/default-about.jpg create mode 100755 static/img/default-contact.jpg diff --git a/TODO.md b/TODO.md index 2f4ba4e..e95fe02 100644 --- a/TODO.md +++ b/TODO.md @@ -72,3 +72,27 @@ }, ] ``` +```html +

I Imagine Myself

+
+

"As a photographic artist, my creative pursuit is to escape the attempts to categorize, characterize, compartmentalize, explain, or limit my photographic expression. It is always pleasing to see how observers respond with delight to the ultimate visualizations of my quest. My fondest wish is to pursue my life as a photographer, unbridled and always with a resolve to improve and be the best I can, with a constant yearning to be better."

+
+ +

The Essence of the Image

+

The photographer Marc Leopold was born in Chicago, Illinois in 1964. He credits his artistry in photography to the benevolence of renowned mentors, and to his own constant search for the resources, intricacies and techniques that capture the essence of the image.

+

While Marc's work tends toward nature and representational photography, he also uses his talents in both formal and commercial situations. He works, there, to achieve the same essence that he strives for when shooting nature.

+

Marc's images are in many private collections and corporate and educational institutions. They have also appeared in a number of publications. His photographs appear in several books, including 'Two Weeks the Raven Sings', by David Reston, and in 'Once we Talk', by Jayne deVeres.

+

Marc has also published in a wide variety of magazines and newspapers, including The International Review of Irish American Art, Erik Tweeds' Two Worlds Magazine, EVE Magazine, Parfolio, Essence, The Chicago Tribune, Chicago Derry News, Business News Today, and One Day Journal.

+

In addition to this media exposure, Marc has exhibited at The Chicago College of Art, The Irish American Museum in Detroit, The Sur Dez Gallery in San Antonio, Phoenix City Gallery in Arizona, Wellner Department stores nationwide, Torren Gallery in California, and The Tide Gallery in Boston, and elsewhere.

+

Marc's artistic philosophy is based on his ability to capture a fleeting moment, a solitary instant in eternity, where he feels almost transparent, like a camouflaged moth in the midst of a lush green forest, defining for posterity through his photography an elusive moment in life, captured to share with others.

+ +``` diff --git a/assets/scss/style.scss b/assets/scss/style.scss index d984a09..04d03b6 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -122,6 +122,16 @@ } } +.background-overlay { + z-index: 10; + position: absolute; + width: 100%; + height: 100%; + bottom: 0; + left: 0; + width: 100%; +} + .background-tint { background-color: rgba($color__primary-100, .7); } @@ -133,6 +143,15 @@ box-shadow: 0 0 64px 64px $color; } +.no-content-container { + display: flex; + flex-direction: column; + align-content: center; + justify-content: center; + width: 100%; + text-align: center; +} + .no-content-text { color: $color__neutral-800; } diff --git a/pages/about.vue b/pages/about.vue index 10ef9b0..b0243be 100644 --- a/pages/about.vue +++ b/pages/about.vue @@ -1,27 +1,8 @@