diff --git a/css/style.css b/css/style.css index fd18331..60713d6 100644 --- a/css/style.css +++ b/css/style.css @@ -40,7 +40,7 @@ body { } h1 { - font-family: 'Righteous', cursive; + font-family: 'Righteous', 'Lato', sans-serif; font-size: 2.75rem; text-align: center; text-transform: uppercase; @@ -54,7 +54,6 @@ section .container { padding: .25rem; } - #dspLoc { font-size: 1.25rem; font-weight: bold; diff --git a/index.html b/index.html index e03f69a..1de9e19 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@ - + Local Weather @@ -22,6 +22,7 @@

Weather

+

MM/DD/YYYY, 00:00:00 AM/PM

@@ -31,11 +32,11 @@

Weather

weather icon

Weather condition...

-

0°C

+

°C

-

00:00 AM

+

00:00 AM

00:00 PM

0 m/s

@@ -52,7 +53,7 @@

Weather

- + diff --git a/js/localweather.js b/js/localweather.js index 26bf37a..6d08e83 100755 --- a/js/localweather.js +++ b/js/localweather.js @@ -70,6 +70,7 @@ async function getWeatherInfo(lat, lon) { function displayWeather(loc, icon, weather, temp, sunrise, sunset, wind) { + $("#dspDateTime").html(`${new Date().toLocaleString()}`); $("#dspLoc").css({'margin-bottom': '-.75rem'}); $("#dspLoc").html(loc); $('.dspIcon').css({'display': 'inline'});