├── .eslintrc.json ├── .github └── workflows │ └── linters.yml ├── .gitignore ├── .stylelintrc.json ├── README.md ├── dist ├── average.jpg ├── back-ground-new.jpg ├── index.html ├── low2.jpg ├── main.js └── style.css ├── package.json ├── screenshots ├── desktop_00.jpg ├── desktop_01.png ├── desktop_02.png ├── general.png ├── mobile_01.jpg ├── mobile_02.jpg └── tablet.jpg ├── src ├── DOM.js ├── index.js ├── logic.js └── page-loader.js └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/README.md -------------------------------------------------------------------------------- /dist/average.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/dist/average.jpg -------------------------------------------------------------------------------- /dist/back-ground-new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/dist/back-ground-new.jpg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/low2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/dist/low2.jpg -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/dist/main.js -------------------------------------------------------------------------------- /dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/dist/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/desktop_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/screenshots/desktop_00.jpg -------------------------------------------------------------------------------- /screenshots/desktop_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/screenshots/desktop_01.png -------------------------------------------------------------------------------- /screenshots/desktop_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/screenshots/desktop_02.png -------------------------------------------------------------------------------- /screenshots/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/screenshots/general.png -------------------------------------------------------------------------------- /screenshots/mobile_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/screenshots/mobile_01.jpg -------------------------------------------------------------------------------- /screenshots/mobile_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/screenshots/mobile_02.jpg -------------------------------------------------------------------------------- /screenshots/tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/screenshots/tablet.jpg -------------------------------------------------------------------------------- /src/DOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/src/DOM.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/src/logic.js -------------------------------------------------------------------------------- /src/page-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/src/page-loader.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarvarKh/weather-app/HEAD/webpack.config.js --------------------------------------------------------------------------------