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