├── .gitignore ├── .travis.yml ├── CNAME ├── bower.json ├── dist ├── butns.css └── butns.min.css ├── gulpfile.js ├── icon ├── android-chrome-192x192.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── manifest.json ├── mstile-150x150.png └── safari-pinned-tab.svg ├── index.html ├── package.json ├── readme.md ├── site ├── css │ └── style.css ├── img │ └── background.svg ├── js │ └── script.js └── stylus │ └── style.styl ├── src ├── butns.styl ├── colors.styl ├── colors │ ├── amber.styl │ ├── blue-grey.styl │ ├── blue.styl │ ├── brown.styl │ ├── cyan.styl │ ├── deep-orange.styl │ ├── deep-purple.styl │ ├── green.styl │ ├── grey.styl │ ├── indigo.styl │ ├── light-blue.styl │ ├── light-green.styl │ ├── lime.styl │ ├── orange.styl │ ├── pink.styl │ ├── purple.styl │ ├── red.styl │ ├── teal.styl │ └── yellow.styl └── options.styl └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | butns.ml 2 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/bower.json -------------------------------------------------------------------------------- /dist/butns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/dist/butns.css -------------------------------------------------------------------------------- /dist/butns.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/dist/butns.min.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/gulpfile.js -------------------------------------------------------------------------------- /icon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/android-chrome-192x192.png -------------------------------------------------------------------------------- /icon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/apple-touch-icon.png -------------------------------------------------------------------------------- /icon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/browserconfig.xml -------------------------------------------------------------------------------- /icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/favicon-16x16.png -------------------------------------------------------------------------------- /icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/favicon-32x32.png -------------------------------------------------------------------------------- /icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/favicon.ico -------------------------------------------------------------------------------- /icon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/manifest.json -------------------------------------------------------------------------------- /icon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/mstile-150x150.png -------------------------------------------------------------------------------- /icon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/icon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/readme.md -------------------------------------------------------------------------------- /site/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/site/css/style.css -------------------------------------------------------------------------------- /site/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/site/img/background.svg -------------------------------------------------------------------------------- /site/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/site/js/script.js -------------------------------------------------------------------------------- /site/stylus/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/site/stylus/style.styl -------------------------------------------------------------------------------- /src/butns.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/butns.styl -------------------------------------------------------------------------------- /src/colors.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors.styl -------------------------------------------------------------------------------- /src/colors/amber.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/amber.styl -------------------------------------------------------------------------------- /src/colors/blue-grey.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/blue-grey.styl -------------------------------------------------------------------------------- /src/colors/blue.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/blue.styl -------------------------------------------------------------------------------- /src/colors/brown.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/brown.styl -------------------------------------------------------------------------------- /src/colors/cyan.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/cyan.styl -------------------------------------------------------------------------------- /src/colors/deep-orange.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/deep-orange.styl -------------------------------------------------------------------------------- /src/colors/deep-purple.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/deep-purple.styl -------------------------------------------------------------------------------- /src/colors/green.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/green.styl -------------------------------------------------------------------------------- /src/colors/grey.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/grey.styl -------------------------------------------------------------------------------- /src/colors/indigo.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/indigo.styl -------------------------------------------------------------------------------- /src/colors/light-blue.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/light-blue.styl -------------------------------------------------------------------------------- /src/colors/light-green.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/light-green.styl -------------------------------------------------------------------------------- /src/colors/lime.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/lime.styl -------------------------------------------------------------------------------- /src/colors/orange.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/orange.styl -------------------------------------------------------------------------------- /src/colors/pink.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/pink.styl -------------------------------------------------------------------------------- /src/colors/purple.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/purple.styl -------------------------------------------------------------------------------- /src/colors/red.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/red.styl -------------------------------------------------------------------------------- /src/colors/teal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/teal.styl -------------------------------------------------------------------------------- /src/colors/yellow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/colors/yellow.styl -------------------------------------------------------------------------------- /src/options.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/src/options.styl -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixahmedxi/Butns/HEAD/yarn.lock --------------------------------------------------------------------------------