├── .gitignore ├── LICENSE ├── README.md ├── exp.index.html ├── favicon ├── a ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.png └── site.webmanifest ├── images ├── IMG_3168.mov ├── br1ck.pdn ├── br1ck.png ├── chromeosismissingordamaged.jpg ├── somethingwentwrong.jpg └── tempfile ├── index.html ├── script.js ├── style.css ├── tempfile └── tilt-card.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/README.md -------------------------------------------------------------------------------- /exp.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/exp.index.html -------------------------------------------------------------------------------- /favicon/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/favicon.ico -------------------------------------------------------------------------------- /favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/favicon.png -------------------------------------------------------------------------------- /favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/favicon/site.webmanifest -------------------------------------------------------------------------------- /images/IMG_3168.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/images/IMG_3168.mov -------------------------------------------------------------------------------- /images/br1ck.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/images/br1ck.pdn -------------------------------------------------------------------------------- /images/br1ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/images/br1ck.png -------------------------------------------------------------------------------- /images/chromeosismissingordamaged.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/images/chromeosismissingordamaged.jpg -------------------------------------------------------------------------------- /images/somethingwentwrong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/images/somethingwentwrong.jpg -------------------------------------------------------------------------------- /images/tempfile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/style.css -------------------------------------------------------------------------------- /tempfile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tilt-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veebyte/br1ck/HEAD/tilt-card.js --------------------------------------------------------------------------------