From fe2eda5729103fa8f29d6302c7d988c5b0ad3e96 Mon Sep 17 00:00:00 2001 From: Angela Quinton Date: Sun, 12 Mar 2023 01:16:08 -0500 Subject: [PATCH] header, footer, whitespace for all responsive breakpoints, text styling --- src/app.css | 15 ++++++++++----- src/views/individual.handlebars | 3 +-- src/views/layouts/main.handlebars | 10 ++++++---- src/views/partials/footer.handlebars | 23 +++++++++++++++-------- src/views/partials/header.handlebars | 4 +++- 5 files changed, 35 insertions(+), 20 deletions(-) diff --git a/src/app.css b/src/app.css index f1d05c4..7ffafcd 100644 --- a/src/app.css +++ b/src/app.css @@ -4,10 +4,10 @@ :root { --background: #F8FAF9; /* Sage/Light/2 */ - --callout: ##ECEFED; /* Sage/Light/4 */ - --stroke: ##D7DCDA; /* Sage/Light/7 */ - --text-shout: ##164430; /* Green/Dark/6 */ - --text-murmur: ##113123; /* Green/Dark/4 */ + --callout: #ECEFED; /* Sage/Light/4 */ + --stroke: #D7DCDA; /* Sage/Light/7 */ + --text-shout: #164430; /* Green/Dark/6 */ + --text-murmur: #113123; /* Green/Dark/4 */ } body { @@ -18,6 +18,7 @@ body { } h1, h2, h3, h4 { + color: var(--text-shout); font-weight: 700; } @@ -25,6 +26,10 @@ h1 { font-family: "Redaction", Georgia, 'Times New Roman', Times, serif; } -h2, h3, h4 { +h2 { font-family: "Redaction 10", Georgia, 'Times New Roman', Times, serif; +} + +footer { + border-color: var(--stroke); } \ No newline at end of file diff --git a/src/views/individual.handlebars b/src/views/individual.handlebars index 146875f..cee9462 100644 --- a/src/views/individual.handlebars +++ b/src/views/individual.handlebars @@ -1,2 +1 @@ -

Individual

-{{nominative}}/{{accusative}}/{{pronominalPossessive}}/{{predicativePossessive}}/{{reflexive}} +

{{nominative}}/​{{accusative}}/​{{pronominalPossessive}}/​{{predicativePossessive}}/​{{reflexive}}

diff --git a/src/views/layouts/main.handlebars b/src/views/layouts/main.handlebars index acb8ab4..8c309f3 100644 --- a/src/views/layouts/main.handlebars +++ b/src/views/layouts/main.handlebars @@ -9,10 +9,12 @@ - -
- {{> header siteName=siteName }} - {{{body}}} + + {{> header siteName=siteName }} +
+
+ {{{body}}} +
{{> footer }}
diff --git a/src/views/partials/footer.handlebars b/src/views/partials/footer.handlebars index 5dc4920..6afd05d 100644 --- a/src/views/partials/footer.handlebars +++ b/src/views/partials/footer.handlebars @@ -1,11 +1,18 @@ -

Made by monsters

+
-
    -
  • Gaiety who uses fae/faer, she/her
  • -
  • Angela who uses it/its, she/her
  • -
  • Rizzo who uses he/him, they/them, xier/xies
  • -
+
+

Made by monsters

-

This site has a license of some sort, and that's linked here.

+
    +
  • Gaiety who uses fae/faer, she/her
  • +
  • Angela who uses it/its, she/her
  • +
  • Rizzo who uses he/him, they/them, xier/xies
  • +
+
-

Thanks for visiting!

\ No newline at end of file +
+

This site has a license of some sort, and that's linked here.

+ +

Thanks for visiting!

+
+
\ No newline at end of file diff --git a/src/views/partials/header.handlebars b/src/views/partials/header.handlebars index 06ccc3f..8ebf1a8 100644 --- a/src/views/partials/header.handlebars +++ b/src/views/partials/header.handlebars @@ -1 +1,3 @@ -

{{{siteName}}}

\ No newline at end of file + \ No newline at end of file