From 9a5ea2853a09eb3a799b9d82a22bbed0a468515e Mon Sep 17 00:00:00 2001 From: RoyN Date: Sun, 22 Apr 2018 15:27:42 +0300 Subject: [PATCH] m1.lesson9.weather-app-with-leaflet.Roy --- .../index.html | 91 ++++++++++++++++++- .../styles.css | 38 ++++++++ 2 files changed, 128 insertions(+), 1 deletion(-) create mode 100644 m1.lesson9.weather-app-with-leaflet/styles.css diff --git a/m1.lesson9.weather-app-with-leaflet/index.html b/m1.lesson9.weather-app-with-leaflet/index.html index 566549b..fd69569 100644 --- a/m1.lesson9.weather-app-with-leaflet/index.html +++ b/m1.lesson9.weather-app-with-leaflet/index.html @@ -2,9 +2,98 @@ - Title + Weather api sample + + + + + +
+ Select city: + +
+
+ + + + + + + + + + + + + + +
CityTempWindHumidity
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/m1.lesson9.weather-app-with-leaflet/styles.css b/m1.lesson9.weather-app-with-leaflet/styles.css new file mode 100644 index 0000000..e121ccf --- /dev/null +++ b/m1.lesson9.weather-app-with-leaflet/styles.css @@ -0,0 +1,38 @@ +body { + padding: 20px; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif +} + +section { + margin: 20px 0; +} + +#mapid { + height: 400px; + width: 400px; + } + +h1 { + color: rgb(8, 70, 88); + text-shadow: 0 2px 3px #555; +} + +table { + border: 1px royalblue solid; + border-collapse: collapse; +} + +table caption { + color: #222; + text-shadow: 0 2px 3px #555; + padding: 10px; + font-size: 20px; +} + +table thead tr { + border-bottom: 1px royalblue solid; +} + +table td { + padding: 5px; +} \ No newline at end of file