diff --git a/frontend/src/App.js b/frontend/src/App.js index 4648212..a629060 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -2,14 +2,14 @@ import React, { useState } from 'react' import './styles/App.scss' -import Header from './components/Header' +// import Header from './components/Header' import Intro from './components/Intro' import Controls from './components/Controls' import ProgressTracking from './components/ProgressTracking' import Results from './components/Results' import Footer from './components/Footer' // import DownNotice from "./components/DownNotice"; -import ContributionAsk from './components/ContributionAsk' +// import ContributionAsk from './components/ContributionAsk' function App() { const [queryData, setQueryData] = useState(null) @@ -24,7 +24,7 @@ function App() { return (
-
+ {/*
*/} {/* */} {/* */} diff --git a/frontend/src/components/Footer.jsx b/frontend/src/components/Footer.jsx index 16666db..5d7f677 100644 --- a/frontend/src/components/Footer.jsx +++ b/frontend/src/components/Footer.jsx @@ -71,18 +71,6 @@ const Footer = (props) => {

- {/*

- Maintaining this project is not free! Please consider - chipping in{' '} - - here - - . -

*/}
{ - return ( ) } - - - -export default Intro; \ No newline at end of file +export default Intro diff --git a/frontend/src/styles/Intro.scss b/frontend/src/styles/Intro.scss index a036fec..9452c35 100644 --- a/frontend/src/styles/Intro.scss +++ b/frontend/src/styles/Intro.scss @@ -3,46 +3,79 @@ #intro-container { text-align: left; max-width: 650px; - margin-top: 2rem; -} + margin-top: 96px; -#intro-container .row { - text-align: center; -} + .row { + text-align: center; + max-width: 580px; -#intro-container .row.intro-paragraph { - text-align: left; - max-width: 580px; + &.intro-paragraph { + text-align: left; + + margin: 32px auto 24px; + font-family: 'Yantramanav', 'aktiv-grotesk', Inconsolata, Monaco; + + p { + font-size: 18px; + line-height: 130%; + } + } - margin: 32px auto 40px; - font-family: 'Yantramanav', 'aktiv-grotesk', Inconsolata, Monaco; + &.byline { + max-width: 580px; - p { - font-size: 18px; - line-height: 130%; + font-style: italic; + text-align: left; + + margin: 0 auto 32px; + + .icon-img { + height: 14px; + width: auto; + } + } + } + + h1 { + font-size: 44px; + line-height: 44px; + font-family: 'Red Hat Display', 'aktiv-grotesk', Inconsolata, Monaco; + font-weight: 500; } -} -#intro-container h1 { - font-size: 44px; - line-height: 44px; - font-family: 'Red Hat Display', 'aktiv-grotesk', Inconsolata, Monaco; - font-weight: 500; + span.bolded { + font-weight: 600; + } } @media only screen and (max-width: 700px) { #intro-container { max-width: 85vw; + margin-top: 64px; - .row.intro-paragraph { - margin: 24px auto 32px; + .row { + &.intro-paragraph { + margin: 32px auto 24px; - width: 90%; - max-width: 500px; + width: 90%; + max-width: 500px; - p { - font-size: 16px; - line-height: 130%; + p { + font-size: 16px; + line-height: 130%; + } + } + + &.byline { + width: 90%; + max-width: 500px; + + margin: 0 auto 24px; + + .icon-img { + height: 14px; + width: auto; + } } }