From 7376ca0c2e6c09bf015c31562e1421bb079cb6bf Mon Sep 17 00:00:00 2001 From: Michael Phelps Date: Sun, 4 Oct 2020 00:30:52 -0500 Subject: [PATCH] :lipstick: App.css Template creates App.css template file for issue #3 --- templates/App.css.js | 53 ++++++++++++++++++++++++++++ templates/App.js | 83 ++++++++++++++++++++++++++++---------------- 2 files changed, 106 insertions(+), 30 deletions(-) create mode 100644 templates/App.css.js diff --git a/templates/App.css.js b/templates/App.css.js new file mode 100644 index 0000000..5e9d6ae --- /dev/null +++ b/templates/App.css.js @@ -0,0 +1,53 @@ +module exports = `@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@600&display=swap"); + +body { + background-color: #1d212c; +} + +h2 { + color: #ec3944; + font-family: "Crimson Text", serif; + text-align: center; + font-size: 3.5rem; +} + +.image-container { + display: flex; + justify-content: center; + padding-top: 40px; +} + +img { + width: 30%; + text-align: center; +} + +h2 { + color: white; +} + +.welcome-bottom { + margin-top: -10px; + color: #ec3944; + font-size: 3rem; +} + +h4 { + text-align: center; + color: #f9eee5; +} + +.filler-text { + text-align: center; + color: white; + padding-top: 5%; +} + +.footer { + text-align: center; + padding-top: 10%; +} + +.footer p { + color: white; +}` diff --git a/templates/App.js b/templates/App.js index fdde854..7d5809e 100644 --- a/templates/App.js +++ b/templates/App.js @@ -6,37 +6,60 @@ const App = () => { return (
{/* Remove everything from this line to line 37 */} -

Welcome Lambda student! This is filler, no need to keep it!

- - Visit the Lambda Llama home - -
- Lambda loves our llamas! -
-

Created using Create-React-App

-

Modified and maintained by Lambda School graduate:

-

- Zac Smith {' '} - - Github - {' '} - ::{' '} - - NPM - {' '} - ::{' '} - - Twitter - -

+
+ Lambda loves our llamas! +
+

+ Welcome

Lambda student!

+

+

Your React Application is Ready

+

Now go work your magic!

+

This is filler, no need to keep it!

+
+ + Visit the Lambda Llama home + +
+
+

Created using Create-React-App

+

Modified and maintained by Lambda School graduate Zac Smith

+

+ + Github + {" "} + ::{" "} + + NPM + {" "} + ::{" "} + + Twitter + +

+
{/* Remove everything from line 8 to here */}
- ) -} + ); +}; -export default App` +export default App;`;