diff --git a/_includes/googlefonts.html b/_includes/googlefonts.html index 26c8f08..d55965b 100644 --- a/_includes/googlefonts.html +++ b/_includes/googlefonts.html @@ -1 +1,2 @@ - \ No newline at end of file + + \ No newline at end of file diff --git a/about/index.html b/about/index.html index ea1b5ac..7894f59 100644 --- a/about/index.html +++ b/about/index.html @@ -6,13 +6,8 @@ ---
-
-
-

- Never give up. -

-
-
+
+
{% for line in site.data.profile.missionstatement %}

{{ line }} diff --git a/css/base.css b/css/base.css index 6815cbb..944171a 100644 --- a/css/base.css +++ b/css/base.css @@ -195,12 +195,16 @@ div#nex-menu { /* #About ================================================== */ .about-title-quote { - text-align: center; } + border-top: 1px solid #bcbcbc; + border-bottom: 1px solid #bcbcbc; + border-left: none; + margin: 2rem 0 4rem; } .about-title-quote p { - font-size: 2.0rem; - font-weight: bold; - color: #f6f6f6; - background: #424242; } + font-family: Lato, sans-serif; + font-size: 2.2rem; + font-weight: 300; + color: #8a8a8a; + margin: 1.5rem 0 1rem; } /* #Blog ================================================== */ diff --git a/css/base.scss b/css/base.scss index a333342..67b198f 100644 --- a/css/base.scss +++ b/css/base.scss @@ -276,14 +276,18 @@ ================================================== */ .about-title-quote { - text-align: center; - p { - font-size: 2.0rem; - font-weight: bold; - color: $color-bg; - background: $color-darkgray; + font-family: Lato, sans-serif; + font-size: 2.2rem; + font-weight: 300; + color: $color-hovergray; + margin: 1.5rem 0 1rem; } + + border-top: 1px solid $color-lightgray; + border-bottom: 1px solid $color-lightgray; + border-left: none; + margin: 2rem 0 4rem; }