summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-06-28 15:05:28 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-06-28 15:05:28 -0400
commit90c58028a26c0b48811d3058260f6f936f6ad6cb (patch)
treee866013fd396793abc8754d1b3984329ef2de9a0
parente0d597b51c2893f1a35630fa07cc2ccef181511c (diff)
downloadcarpentertutoring-90c58028a26c0b48811d3058260f6f936f6ad6cb.tar.xz
carpentertutoring-90c58028a26c0b48811d3058260f6f936f6ad6cb.zip
Finished pricing guide, updated subheading colors, etc.
-rw-r--r--_data/content/blurb.yml1
-rw-r--r--_includes/nav.liquid3
-rw-r--r--_layouts/index.liquid32
-rw-r--r--assets/signature.jpgbin0 -> 16862 bytes
-rw-r--r--styles/index.scss4
-rw-r--r--styles/main.scss3
6 files changed, 28 insertions, 15 deletions
diff --git a/_data/content/blurb.yml b/_data/content/blurb.yml
index 13bbd9d..3daa00d 100644
--- a/_data/content/blurb.yml
+++ b/_data/content/blurb.yml
@@ -1,4 +1,3 @@
- Welcome, and thank you for your interest in Carpenter Tutoring!
- Carpenter Tutoring is a private tutoring service based in Suffolk, Virginia. I offer in-person sessions throughout the Hampton Roads area and remote sessions anywhere in the country. Most of my offerings are one-on-one, and group sessions and classes are also available. No matter your budget, I am confident that we can find an arrangement that will provide your student services without creating financial strain.
- I invite you to scroll down to learn more about the services I offer, my background, and some of my policies. Thank you for visiting, and please do not hesitate to reach out with any questions. I would be thrilled to assist you!
-- -- Amy Carpenter
diff --git a/_includes/nav.liquid b/_includes/nav.liquid
index 8d3f9cb..a164ed3 100644
--- a/_includes/nav.liquid
+++ b/_includes/nav.liquid
@@ -19,6 +19,9 @@
<a class="navbar-item" href="/#offerings">
Offerings
</a>
+ <a class="navbar-item" href="/#pricing">
+ Pricing
+ </a>
<a class="navbar-item" href="/#about">
About
</a>
diff --git a/_layouts/index.liquid b/_layouts/index.liquid
index 1bb3562..b527c49 100644
--- a/_layouts/index.liquid
+++ b/_layouts/index.liquid
@@ -41,10 +41,16 @@
<div class="column">
<!-- intro blurb -->
<div class="content">
- {% for line in site.data.content.blurb %}
+ <h2 class="subtitle is-3 has-text-shadow">
+ {{ site.data.content.blurb.first }}
+ </h2>
+ {% for line in site.data.content.blurb offset:1 %}
<p>{{ line }}</p>
{% endfor %}
</div>
+ <figure class="image is-200x200">
+ <img src="/assets/signature.jpg" />
+ </figure>
</div>
<div class="column is-one-third">
<div class="box">
@@ -114,19 +120,17 @@
<!-- about pic and text -->
<section class="section quiet" id="about">
<div class="container">
- <div class="columns is-vcentered">
- <div class="column is-one-third">
- <figure class="image">
- <img src="/assets/logo.png" />
- </figure>
- </div>
- <div class="column">
- <div class="content">
- {% for line in site.data.content.about %}
- <p>{{ line }}</p>
- {% endfor %}
- </div>
- </div>
+ <div class="content">
+ <figure class="image is-256x256" style="float: right;">
+ <img src="/assets/logo.png" />
+ </figure>
+ <h2 class="subtitle is-3 has-text-shadow">
+ {{ site.data.content.about.first }}
+ </h2>
+
+ {% for line in site.data.content.about offset:1 %}
+ <p>{{ line }}</p>
+ {% endfor %}
</div>
</div>
</section>
diff --git a/assets/signature.jpg b/assets/signature.jpg
new file mode 100644
index 0000000..ad27b61
--- /dev/null
+++ b/assets/signature.jpg
Binary files differ
diff --git a/styles/index.scss b/styles/index.scss
index ba30ea2..7916766 100644
--- a/styles/index.scss
+++ b/styles/index.scss
@@ -41,6 +41,10 @@
);
}
+.content h2 {
+ color: $darkteal;
+}
+
.banner {
right: 100%;
padding-top: 5%;
diff --git a/styles/main.scss b/styles/main.scss
index 3223d50..81bf7c4 100644
--- a/styles/main.scss
+++ b/styles/main.scss
@@ -32,6 +32,9 @@ $subtitle-family: "Indie Flower", cursive;
//$body-font-size: 1.8rem;
// $body-background-color: $isabelline;
// $table-striped-row-even-background-color: $darkteal;
+$table-cell-heading-color: $darkteal;
+$table-head-cell-color: $darkteal;
+$dimensions: 16 24 32 48 64 96 128 200 256;
// Import only what you need from Bulma
@import "../_bulma/node_modules/bulma/sass/utilities/_all.sass";