From 719bbb65c66021c44a62df96c33f0f63979c11b1 Mon Sep 17 00:00:00 2001 From: Adam T Carpenter Date: Sun, 2 Feb 2020 12:01:58 -0500 Subject: init --- src/.index.html.swp | Bin 0 -> 16384 bytes src/about/index.html | 72 ++++++++++++++ src/index.html | 222 ++++++++++++++++++++++++++++++++++++++++++++ src/nav-toggle.js | 23 +++++ src/offerings/index.html | 0 src/sass/.mystyles.scss.swp | Bin 0 -> 12288 bytes src/sass/mystyles.scss | 37 ++++++++ 7 files changed, 354 insertions(+) create mode 100644 src/.index.html.swp create mode 100644 src/about/index.html create mode 100644 src/index.html create mode 100644 src/nav-toggle.js create mode 100644 src/offerings/index.html create mode 100644 src/sass/.mystyles.scss.swp create mode 100644 src/sass/mystyles.scss (limited to 'src') diff --git a/src/.index.html.swp b/src/.index.html.swp new file mode 100644 index 0000000..30340b6 Binary files /dev/null and b/src/.index.html.swp differ diff --git a/src/about/index.html b/src/about/index.html new file mode 100644 index 0000000..868f34b --- /dev/null +++ b/src/about/index.html @@ -0,0 +1,72 @@ + +
+
+
+ +
+
+
+ +
+
+ + +
+
+
+ + +
+
+
+

+ School is tricky, and there is no universal pathway + to success. I started Carpenter Tutoring for those + seeking a little help finding their way. +

+

+ I received my B.A. from The College of William and + Mary in 2018 and will receive my M.Ed from W&M + in 2020. As an undergraduate, I worked and was + trained as a tutor at W&M's peer tutoring + center, the Tribe TutorZone. During this period, I + conducted over 150 one-on-one appointments with + W&M students in 26 different content areas. I + earned lifetime Advanced Tutor Certification, the + highest level W&M can grant, through the + College Reading and Learning Association, and I was + trained as a time management consultant. I took on + leadership roles within the TutorZone until I was + working alongside its director. As a graduate + student, I became one of the Graduate Assistants + helping oversee the TutorZone as well as an + academic coach to students with high need for + academic support. +

+

+ I loved getting to work with the Tribe TutorZone + tutors, but I realized that I missed being the + tutor. There's just nothing like watching the light + bulb of understanding go off or seeing students who + had struggled with material master it! With that + realization, I decided to dedicate my life to my + passion: helping students of all ages learn, + succeed, and believe in themselves. +

+

+ Thank you for considering Carpenter Tutoring. +

+

+ -- Amy Carpenter +

+
+
+
+
+
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..b5024b6 --- /dev/null +++ b/src/index.html @@ -0,0 +1,222 @@ + + + + + + + + + + + + + Carpenter Tutoring + + + + + + + + +
+
+
+
+
+

+ Carpenter Tutoring +

+

+ Discover your path to success +

+
+ +
+
+ + +
+
+
+
+ + +
+
+
+ +
+
+
+ +
+
+ + +
+
+
+ + +
+
+
+

+ School is tricky, and there is no universal pathway + to success. I started Carpenter Tutoring for those + seeking a little help finding their way. +

+

+ I received my B.A. from The College of William and + Mary in 2018 and will receive my M.Ed from W&M + in 2020. As an undergraduate, I worked and was + trained as a tutor at W&M's peer tutoring + center, the Tribe TutorZone. During this period, I + conducted over 150 one-on-one appointments with + W&M students in 26 different content areas. I + earned lifetime Advanced Tutor Certification, the + highest level W&M can grant, through the + College Reading and Learning Association, and I was + trained as a time management consultant. I took on + leadership roles within the TutorZone until I was + working alongside its director. As a graduate + student, I became one of the Graduate Assistants + helping oversee the TutorZone as well as an + academic coach to students with high need for + academic support. +

+

+ I loved getting to work with the Tribe TutorZone + tutors, but I realized that I missed being the + tutor. There's just nothing like watching the light + bulb of understanding go off or seeing students who + had struggled with material master it! With that + realization, I decided to dedicate my life to my + passion: helping students of all ages learn, + succeed, and believe in themselves. +

+

+ Thank you for considering Carpenter Tutoring. +

+

+ -- Amy Carpenter +

+
+
+
+
+
+ + +
+
+
+
+

+ Tutoring Help +

+

+ Numerous subjects, disciplines, and levels +

+
+
+

+ Academic Coaching +

+ Assisted learning and time management +

+
+
+

+ SAT/ACT Prep. +

+

+ Test-taking strategies and essay writing +

+
+
+

+ Group Webinars +

+

+ Facilitated online group learning +

+
+
+
+
+ + + + + +
+
+ + + + + + + + + diff --git a/src/nav-toggle.js b/src/nav-toggle.js new file mode 100644 index 0000000..daf8ecb --- /dev/null +++ b/src/nav-toggle.js @@ -0,0 +1,23 @@ +/* + * Adds an event listener to all burgers to toggle navbar menu on click. + */ +document.addEventListener('DOMContentLoaded', function () { + // get all navbar-burger elements + const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0); + + // check if there are any navbar burgers + if ($navbarBurgers.length > 0) { + // add a click event on each of them + $navbarBurgers.forEach(function(el) { + el.addEventListener('click', function () { + // get the target from the 'data-target' attribute + const target = el.dataset.target; + const $target = document.getElementById(target); + + // toggle the 'is-active' class on both the 'navbar-burger' and the 'navbar-menu' + el.classList.toggle('is-active'); + $target.classList.toggle('is-active'); + }); + }); + } +}); diff --git a/src/offerings/index.html b/src/offerings/index.html new file mode 100644 index 0000000..e69de29 diff --git a/src/sass/.mystyles.scss.swp b/src/sass/.mystyles.scss.swp new file mode 100644 index 0000000..4865d95 Binary files /dev/null and b/src/sass/.mystyles.scss.swp differ diff --git a/src/sass/mystyles.scss b/src/sass/mystyles.scss new file mode 100644 index 0000000..f68a6a9 --- /dev/null +++ b/src/sass/mystyles.scss @@ -0,0 +1,37 @@ +@charset "utf-8"; + + +// Import Google Fonts +@import url('https://fonts.googleapis.com/css?family=Nunito:400,700'); + + +// Set brand colors +$pine-green: #01646d; +$midnight-green: #114b5f; +$eton-blue: #88d498; +$pastel-gray: #c6dabf; +$isabelline: #f7f4ea; + +// Update Bulma's global variables +$primary: $pine-green; +$link: $midnight-green; +// $info: $cyan +$success: $eton-blue; +// $warning: $yellow +// $danger: $red +// $dark: $grey-darker +// $text: $grey-dark +// $family-sans-serif: "Nunito", sans-serif; +$hr-background-color: $primary; + +$body-background-color: $isabelline; + + +// Import only what you need from Bulma +@import "../../node_modules/bulma/sass/utilities/_all.sass"; +@import "../../node_modules/bulma/sass/base/_all.sass"; +@import "../../node_modules/bulma/sass/elements/_all.sass"; +@import "../../node_modules/bulma/sass/form/_all.sass"; +@import "../../node_modules/bulma/sass/components/_all.sass"; +@import "../../node_modules/bulma/sass/layout/_all.sass"; +@import "../../node_modules/bulma/sass/grid/_all.sass"; -- cgit v1.2.3