├── .github └── FUNDING.yml ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── account_menu ├── README.md ├── fontello.eot ├── fontello.svg ├── fontello.ttf ├── fontello.woff ├── index.html └── style.css ├── card_flip ├── README.md ├── bg.jpg ├── favicon.png ├── index.html ├── logo.png ├── maiden.jpg ├── pattern.png ├── qrcode.png ├── social_networks.png └── style.css ├── hide_show_div ├── README.md ├── demo2.html ├── index.html └── style.css ├── index.html ├── login_form ├── README.md ├── favicon.png ├── index.html ├── mailer-logo.jpg └── style.css ├── minimal_signup_form ├── README.md ├── about.html ├── cover.png ├── favicon.ico ├── fonts │ ├── form.eot │ ├── form.svg │ ├── form.ttf │ └── form.woff ├── index.html ├── jquery.validate.min.js ├── mixture.json ├── modernizr.min.js ├── placeholder.min.js ├── style.css ├── style.min.css └── style.scss ├── scrollr ├── README.md ├── images │ └── large │ │ ├── .DS_Store │ │ ├── alex-bg-large.jpg │ │ ├── bud-bg-large.jpg │ │ ├── par-bg-large.jpg │ │ └── pra-bg-large.jpg ├── index.html ├── javascript │ ├── skrollr.min.js │ └── skrollr.mobile.min.js └── style │ ├── .DS_Store │ ├── fonts │ ├── .DS_Store │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ ├── fontello.woff │ ├── signpainter.eot │ ├── signpainter.svg │ ├── signpainter.ttf │ └── signpainter.woff │ └── style.css ├── set_cookies ├── README.md ├── cookie.js ├── index.html └── style.css ├── switch ├── README.md ├── favicon.png ├── index.html ├── pattern.jpg └── style.css ├── teehan_lax_navigation ├── README.md ├── fonts │ ├── sicanstudios-demo.dev.svg │ ├── sicanstudios-demo.eot │ ├── sicanstudios-demo.svg │ ├── sicanstudios-demo.ttf │ └── sicanstudios-demo.woff ├── index.html ├── style.css └── teehan-lax-navigation.png └── twitter_button ├── README.md ├── favicon.png ├── fontello.eot ├── fontello.svg ├── fontello.ttf ├── fontello.woff ├── index.html ├── pattern.jpg ├── style.css └── twitter_css.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | lab.alexcican.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/README.md -------------------------------------------------------------------------------- /account_menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/account_menu/README.md -------------------------------------------------------------------------------- /account_menu/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/account_menu/fontello.eot -------------------------------------------------------------------------------- /account_menu/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/account_menu/fontello.svg -------------------------------------------------------------------------------- /account_menu/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/account_menu/fontello.ttf -------------------------------------------------------------------------------- /account_menu/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/account_menu/fontello.woff -------------------------------------------------------------------------------- /account_menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/account_menu/index.html -------------------------------------------------------------------------------- /account_menu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/account_menu/style.css -------------------------------------------------------------------------------- /card_flip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/README.md -------------------------------------------------------------------------------- /card_flip/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/bg.jpg -------------------------------------------------------------------------------- /card_flip/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/favicon.png -------------------------------------------------------------------------------- /card_flip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/index.html -------------------------------------------------------------------------------- /card_flip/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/logo.png -------------------------------------------------------------------------------- /card_flip/maiden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/maiden.jpg -------------------------------------------------------------------------------- /card_flip/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/pattern.png -------------------------------------------------------------------------------- /card_flip/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/qrcode.png -------------------------------------------------------------------------------- /card_flip/social_networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/social_networks.png -------------------------------------------------------------------------------- /card_flip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/card_flip/style.css -------------------------------------------------------------------------------- /hide_show_div/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/hide_show_div/README.md -------------------------------------------------------------------------------- /hide_show_div/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/hide_show_div/demo2.html -------------------------------------------------------------------------------- /hide_show_div/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/hide_show_div/index.html -------------------------------------------------------------------------------- /hide_show_div/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/hide_show_div/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/index.html -------------------------------------------------------------------------------- /login_form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/login_form/README.md -------------------------------------------------------------------------------- /login_form/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/login_form/favicon.png -------------------------------------------------------------------------------- /login_form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/login_form/index.html -------------------------------------------------------------------------------- /login_form/mailer-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/login_form/mailer-logo.jpg -------------------------------------------------------------------------------- /login_form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/login_form/style.css -------------------------------------------------------------------------------- /minimal_signup_form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/README.md -------------------------------------------------------------------------------- /minimal_signup_form/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/about.html -------------------------------------------------------------------------------- /minimal_signup_form/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/cover.png -------------------------------------------------------------------------------- /minimal_signup_form/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/favicon.ico -------------------------------------------------------------------------------- /minimal_signup_form/fonts/form.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/fonts/form.eot -------------------------------------------------------------------------------- /minimal_signup_form/fonts/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/fonts/form.svg -------------------------------------------------------------------------------- /minimal_signup_form/fonts/form.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/fonts/form.ttf -------------------------------------------------------------------------------- /minimal_signup_form/fonts/form.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/fonts/form.woff -------------------------------------------------------------------------------- /minimal_signup_form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/index.html -------------------------------------------------------------------------------- /minimal_signup_form/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/jquery.validate.min.js -------------------------------------------------------------------------------- /minimal_signup_form/mixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/mixture.json -------------------------------------------------------------------------------- /minimal_signup_form/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/modernizr.min.js -------------------------------------------------------------------------------- /minimal_signup_form/placeholder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/placeholder.min.js -------------------------------------------------------------------------------- /minimal_signup_form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/style.css -------------------------------------------------------------------------------- /minimal_signup_form/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/style.min.css -------------------------------------------------------------------------------- /minimal_signup_form/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/minimal_signup_form/style.scss -------------------------------------------------------------------------------- /scrollr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/README.md -------------------------------------------------------------------------------- /scrollr/images/large/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/images/large/.DS_Store -------------------------------------------------------------------------------- /scrollr/images/large/alex-bg-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/images/large/alex-bg-large.jpg -------------------------------------------------------------------------------- /scrollr/images/large/bud-bg-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/images/large/bud-bg-large.jpg -------------------------------------------------------------------------------- /scrollr/images/large/par-bg-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/images/large/par-bg-large.jpg -------------------------------------------------------------------------------- /scrollr/images/large/pra-bg-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/images/large/pra-bg-large.jpg -------------------------------------------------------------------------------- /scrollr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/index.html -------------------------------------------------------------------------------- /scrollr/javascript/skrollr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/javascript/skrollr.min.js -------------------------------------------------------------------------------- /scrollr/javascript/skrollr.mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/javascript/skrollr.mobile.min.js -------------------------------------------------------------------------------- /scrollr/style/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/.DS_Store -------------------------------------------------------------------------------- /scrollr/style/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/.DS_Store -------------------------------------------------------------------------------- /scrollr/style/fonts/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/fontello.eot -------------------------------------------------------------------------------- /scrollr/style/fonts/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/fontello.svg -------------------------------------------------------------------------------- /scrollr/style/fonts/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/fontello.ttf -------------------------------------------------------------------------------- /scrollr/style/fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/fontello.woff -------------------------------------------------------------------------------- /scrollr/style/fonts/signpainter.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/signpainter.eot -------------------------------------------------------------------------------- /scrollr/style/fonts/signpainter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/signpainter.svg -------------------------------------------------------------------------------- /scrollr/style/fonts/signpainter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/signpainter.ttf -------------------------------------------------------------------------------- /scrollr/style/fonts/signpainter.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/fonts/signpainter.woff -------------------------------------------------------------------------------- /scrollr/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/scrollr/style/style.css -------------------------------------------------------------------------------- /set_cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/set_cookies/README.md -------------------------------------------------------------------------------- /set_cookies/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/set_cookies/cookie.js -------------------------------------------------------------------------------- /set_cookies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/set_cookies/index.html -------------------------------------------------------------------------------- /set_cookies/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/set_cookies/style.css -------------------------------------------------------------------------------- /switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/switch/README.md -------------------------------------------------------------------------------- /switch/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/switch/favicon.png -------------------------------------------------------------------------------- /switch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/switch/index.html -------------------------------------------------------------------------------- /switch/pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/switch/pattern.jpg -------------------------------------------------------------------------------- /switch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/switch/style.css -------------------------------------------------------------------------------- /teehan_lax_navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/README.md -------------------------------------------------------------------------------- /teehan_lax_navigation/fonts/sicanstudios-demo.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/fonts/sicanstudios-demo.dev.svg -------------------------------------------------------------------------------- /teehan_lax_navigation/fonts/sicanstudios-demo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/fonts/sicanstudios-demo.eot -------------------------------------------------------------------------------- /teehan_lax_navigation/fonts/sicanstudios-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/fonts/sicanstudios-demo.svg -------------------------------------------------------------------------------- /teehan_lax_navigation/fonts/sicanstudios-demo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/fonts/sicanstudios-demo.ttf -------------------------------------------------------------------------------- /teehan_lax_navigation/fonts/sicanstudios-demo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/fonts/sicanstudios-demo.woff -------------------------------------------------------------------------------- /teehan_lax_navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/index.html -------------------------------------------------------------------------------- /teehan_lax_navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/style.css -------------------------------------------------------------------------------- /teehan_lax_navigation/teehan-lax-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/teehan_lax_navigation/teehan-lax-navigation.png -------------------------------------------------------------------------------- /twitter_button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/README.md -------------------------------------------------------------------------------- /twitter_button/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/favicon.png -------------------------------------------------------------------------------- /twitter_button/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/fontello.eot -------------------------------------------------------------------------------- /twitter_button/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/fontello.svg -------------------------------------------------------------------------------- /twitter_button/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/fontello.ttf -------------------------------------------------------------------------------- /twitter_button/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/fontello.woff -------------------------------------------------------------------------------- /twitter_button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/index.html -------------------------------------------------------------------------------- /twitter_button/pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/pattern.jpg -------------------------------------------------------------------------------- /twitter_button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/style.css -------------------------------------------------------------------------------- /twitter_button/twitter_css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcican/lab/HEAD/twitter_button/twitter_css.jpg --------------------------------------------------------------------------------