diff --git a/index.html b/index.html index 864999c..da5052c 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,10 @@ - + C.L. Haskell & Son Inc. diff --git a/src/App.css b/src/App.css index 6024e20..4808730 100644 --- a/src/App.css +++ b/src/App.css @@ -1,10 +1,10 @@ :root { - --company-orange: #FE9E24; - --company-orange-light: #FFBA6F; + --company-orange: #fe9e24; + --company-orange-light: #ffba6f; } * { - font-family: 'Montserrat', sans-serif; + font-family: "Montserrat", sans-serif; } a.btn-primary { @@ -15,7 +15,7 @@ a.btn-primary { } a.btn-primary:hover { - background-color: rgba(0,0,0,0) !important; + background-color: rgba(0, 0, 0, 0) !important; border-color: var(--company-orange) !important; color: var(--company-orange) !important; } @@ -36,7 +36,7 @@ button.btn-primary { } button.btn-primary:hover { - background-color: rgba(0,0,0,0) !important; + background-color: rgba(0, 0, 0, 0) !important; border-color: var(--company-orange) !important; color: var(--company-orange) !important; } @@ -92,4 +92,4 @@ body { to { transform: rotate(360deg); } -} \ No newline at end of file +} diff --git a/src/components/Hero.css b/src/components/Hero.css index d85eb11..5dd7c5c 100644 --- a/src/components/Hero.css +++ b/src/components/Hero.css @@ -4,8 +4,6 @@ left: 0; } - - div.row.hero { background: url("../img/hagen-dock.png") no-repeat center center; background-position: top; @@ -34,4 +32,4 @@ div.hero-text h1 { /* font-style: italic; */ font-weight: bold; font-size: 1.7em; -} \ No newline at end of file +} diff --git a/src/components/TitledSection.jsx b/src/components/TitledSection.jsx index 475070b..d14e931 100644 --- a/src/components/TitledSection.jsx +++ b/src/components/TitledSection.jsx @@ -3,8 +3,8 @@ import PropTypes from 'prop-types' const TitledSection = ({ title, children }) => ( -

{title}

- {children} +

{title}

+ {children}
)