diff --git a/index.html b/index.html index e0bdb91..728902d 100644 --- a/index.html +++ b/index.html @@ -23,7 +23,11 @@
-

Weather

+
+ 11° + Temuco +
+
diff --git a/script.js b/script.js index 17a8cbf..6e264a8 100644 --- a/script.js +++ b/script.js @@ -204,6 +204,10 @@ const search = new function () { } } +const weather = new function () { + +} + window.addEventListener('load', () => { currency.on_load() photos.on_load() diff --git a/styles.css b/styles.css index 4ff3c5e..41694ff 100644 --- a/styles.css +++ b/styles.css @@ -160,3 +160,24 @@ border: none; } + +/* Weather */ + +#weather-box { + +} + +.weather-description { + display: flex; + flex-direction: row; + justify-content: space-between; + + font-size: 1.5em; + font-weight: 600; +} + +.weather-icon { + width: auto; + height: auto; + object-fit: contain; +}