├── .gitignore ├── .parcelrc ├── README.md ├── package.json ├── src ├── index.html ├── js │ ├── Spotify.js │ ├── index.js │ └── utils │ │ └── dom.js └── scss │ ├── components │ └── _nav.scss │ ├── core │ ├── _fonts.scss │ ├── _globals.scss │ ├── _reset.scss │ └── _variables.scss │ ├── index.scss │ ├── pages │ └── _home.scss │ ├── shared │ ├── _fonts.scss │ └── _links.scss │ └── utils │ ├── _breakpoints.scss │ ├── _functions.scss │ └── _mixins.scss ├── static └── .gitkeep └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/.gitignore -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/.parcelrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/Spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/js/Spotify.js -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/js/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/js/utils/dom.js -------------------------------------------------------------------------------- /src/scss/components/_nav.scss: -------------------------------------------------------------------------------- 1 | .c-nav { 2 | } 3 | -------------------------------------------------------------------------------- /src/scss/core/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/core/_fonts.scss -------------------------------------------------------------------------------- /src/scss/core/_globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/core/_globals.scss -------------------------------------------------------------------------------- /src/scss/core/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/core/_reset.scss -------------------------------------------------------------------------------- /src/scss/core/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/core/_variables.scss -------------------------------------------------------------------------------- /src/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/index.scss -------------------------------------------------------------------------------- /src/scss/pages/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/pages/_home.scss -------------------------------------------------------------------------------- /src/scss/shared/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/shared/_fonts.scss -------------------------------------------------------------------------------- /src/scss/shared/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/shared/_links.scss -------------------------------------------------------------------------------- /src/scss/utils/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/utils/_breakpoints.scss -------------------------------------------------------------------------------- /src/scss/utils/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/utils/_functions.scss -------------------------------------------------------------------------------- /src/scss/utils/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/src/scss/utils/_mixins.scss -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oluwadareseyi/spotify-now-playing/HEAD/yarn.lock --------------------------------------------------------------------------------