From 1d566a87e48423a8a5b7aa18adc8a09e3a05ab1a Mon Sep 17 00:00:00 2001 From: stacyyuu Date: Thu, 4 May 2023 03:52:36 +0000 Subject: [PATCH] added some css for funsies --- package-lock.json | 2 +- package.json | 2 +- src/App.js | 8 +++--- src/app.css | 54 +++++++++++++++++++++++++++++--------- src/components/Weather.css | 12 ++++++--- 5 files changed, 56 insertions(+), 22 deletions(-) diff --git a/package-lock.json b/package-lock.json index 85454e7..b24f838 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-scripts": "5.0.1", + "react-scripts": "^5.0.1", "web-vitals": "^2.1.4" } }, diff --git a/package.json b/package.json index 5afbe4b..222c50e 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-scripts": "5.0.1", + "react-scripts": "^5.0.1", "web-vitals": "^2.1.4" }, "scripts": { diff --git a/src/App.js b/src/App.js index 99bd8f3..2e09d56 100644 --- a/src/App.js +++ b/src/App.js @@ -61,21 +61,21 @@ function App() { return ( <>
-

WEATHER APPLICATION

+

WEATHER APPLICATION

-
-

or

+ or
+


{isLoading && } diff --git a/src/app.css b/src/app.css index e437085..52d996e 100644 --- a/src/app.css +++ b/src/app.css @@ -1,52 +1,80 @@ +#root { + font: 0.9rem sans-serif; + height: 100%; + margin: 0; +} + *, ::after, ::before { padding: 0; margin: 0; box-sizing: border-box; - font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; } -h1 { - text-align: center; - margin-top: 3rem; + + +.search-sec { + align-items: center; + display: flex; + flex-direction: column; + background: rgba(250, 250, 250, 0.85); + gap: 1rem; + padding: 25px; + border-radius: 20px; + margin-top: 20px; + } + .container { height: 100vh; width: 100%; display: flex; flex-direction: column; align-items: center; - gap: 2rem; + background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.418)), + url("https://images.unsplash.com/photo-1505533542167-8c89838bb19e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80"); + background-size: cover; + background-position: center; } + input { outline: none; - border: 1px solid black; + border: none; + border-radius: 10px; width: 300px; - height: 30px; + height: 40px; padding: 4px; - color: #000; + background: rgba(250, 250, 250, 0.85); } img { - height: 100px; + height: 75px; } + .credit { position: fixed; top: 10px; right: 10px; font-size: 1.5rem; + padding: 10px; + border-radius: 5px; + background: rgba(250, 250, 250, 0.85); } + p { - font-size: 2rem; + font-size: 1.5rem; + border-radius: 10px; + padding: 10px; + background: rgba(250, 250, 250, 0.85); } button { cursor: pointer; background-color: transparent; - border: 1px solid #8a2b06; + border: none; padding: 0.5rem 2rem; - border-radius: 25px; + border-radius: 10px; margin-left: 1rem; - font-family: 'Courier New', Courier, monospace; font-weight: bold; + background: rgba(250, 250, 250, 0.85); } diff --git a/src/components/Weather.css b/src/components/Weather.css index 869cc99..febe257 100644 --- a/src/components/Weather.css +++ b/src/components/Weather.css @@ -1,10 +1,16 @@ .output-sec { display: flex; - flex-direction: column; align-items: center; - gap: 0.8rem; - font-size: 1.5rem; + justify-content: center; + flex-direction: column; + padding: 40px 8%; + border-radius: 20px; + background: rgba(250, 250, 250, 0.85); + box-shadow: 10px 10px 5px 0px rgba(15, 15, 15, 0.404); + letter-spacing: .03rem; } + .output-sec .location { + font-weight: bold; text-transform: uppercase; }