├── .idea ├── .name ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── misc.xml ├── modules.xml └── Muka.iml ├── views ├── index.jade ├── .DS_Store └── layout.jade ├── items ├── decor.js ├── furniture.js ├── outdoor.js └── .DS_Store ├── .DS_Store ├── public ├── .DS_Store ├── css │ ├── .DS_Store │ └── landing-page.css ├── images │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 2.jpg │ ├── 20.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── .DS_Store │ ├── crafter1.jpg │ ├── crafter2.jpg │ └── crafter3.jpg ├── img │ ├── .DS_Store │ ├── doge.png │ ├── ipad.png │ ├── logo.png │ ├── paypal.png │ ├── phones.png │ ├── pic1.jpg │ ├── rating.png │ ├── dogeold.png │ ├── headshot.png │ ├── intro-bg.jpg │ ├── ipadold.png │ ├── shipping.png │ ├── amazonlogo.png │ ├── banner-bg.jpg │ ├── buybutton.png │ ├── headshot1.png │ ├── headshot2.png │ ├── headshot3.png │ ├── intro-bg0.jpg │ ├── intro-bgold.jpg │ ├── phonesold.png │ └── banner-bgold.jpg ├── js │ └── .DS_Store ├── innerpage │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ ├── 3-col-portfolio.css │ │ ├── portfolio-item.css │ │ └── portfolio_styling.css │ ├── js │ │ ├── .DS_Store │ │ ├── MIT-License.txt │ │ ├── animatescroll.noeasing.js │ │ ├── animatescroll.jquery.json │ │ ├── itemPick.js │ │ ├── README.md │ │ ├── custom.css │ │ ├── jquery.roundabout-shapes.js │ │ ├── animatescroll.js │ │ └── matrixUtil.js │ ├── fonts │ │ ├── .DS_Store │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── .DS_Store │ │ ├── like.jpg │ │ ├── like.png │ │ ├── logo.png │ │ ├── tala.jpg │ │ ├── alibata.jpg │ │ ├── crafter1.jpg │ │ ├── crafter2.jpg │ │ ├── crafter3.jpg │ │ ├── dislike.jpg │ │ ├── dislike.png │ │ ├── mulakas.jpg │ │ ├── rating.png │ │ ├── shoe_1.jpg │ │ ├── shoe_2.jpg │ │ ├── shoe_3.jpg │ │ ├── shoe_4.jpg │ │ ├── shoe_5.jpg │ │ ├── shoe_6.jpg │ │ ├── shoe_7.jpg │ │ ├── shoe_8.jpg │ │ ├── shoe_9.jpg │ │ ├── thumbnail_1.jpg │ │ ├── thumbnail_1.png │ │ ├── thumbnail_2.jpg │ │ ├── thumbnail_2.png │ │ ├── thumbnail_3.jpg │ │ ├── thumbnail_3.png │ │ ├── thumbnail_4.jpg │ │ ├── thumbnail_4.png │ │ ├── thumbnail_5.jpg │ │ ├── thumbnail_5.png │ │ ├── thumbnail_6.jpg │ │ ├── thumbnail_6.png │ │ ├── thumbnail_7.jpg │ │ ├── thumbnail_7.png │ │ ├── thumbnail_8.jpg │ │ ├── thumbnail_8.png │ │ ├── thumbnail_9.jpg │ │ └── thumbnail_9.png │ ├── overflow │ │ ├── .DS_Store │ │ ├── js │ │ │ └── .DS_Store │ │ ├── css │ │ │ ├── .DS_Store │ │ │ └── portfolio-item.css │ │ ├── fonts │ │ │ ├── .DS_Store │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── item.html │ ├── item1.html │ ├── crafter3.html │ ├── crafter1.html │ ├── crafter2.html │ ├── ratings.html │ ├── products.html │ └── pick.html ├── stylesheets │ ├── .DS_Store │ ├── style.css │ ├── portfolio-item.css │ └── 3-col-portfolio.css ├── font-awesome │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── fixed-width.less │ │ ├── core.less │ │ ├── bordered-pulled.less │ │ ├── rotated-flipped.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── font-awesome.less │ │ ├── stacked.less │ │ ├── path.less │ │ ├── mixins.less │ │ ├── spinning.less │ │ └── variables.less │ └── scss │ │ ├── _fixed-width.scss │ │ ├── _core.scss │ │ ├── _bordered-pulled.scss │ │ ├── _larger.scss │ │ ├── _rotated-flipped.scss │ │ ├── _list.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _path.scss │ │ ├── _mixins.scss │ │ ├── _spinning.scss │ │ └── _variables.scss ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── progression.min.css ├── progression.min.js ├── contact.html ├── index.html └── about.html ├── README.md ├── routes └── user.js ├── package.json └── app.js /.idea/.name: -------------------------------------------------------------------------------- 1 | Muka -------------------------------------------------------------------------------- /views/index.jade: -------------------------------------------------------------------------------- 1 | include index.html -------------------------------------------------------------------------------- /items/decor.js: -------------------------------------------------------------------------------- 1 | exports.items = { 2 | 3 | } -------------------------------------------------------------------------------- /items/furniture.js: -------------------------------------------------------------------------------- 1 | exports.items = { 2 | 3 | } -------------------------------------------------------------------------------- /items/outdoor.js: -------------------------------------------------------------------------------- 1 | exports.items = { 2 | 3 | } -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/.DS_Store -------------------------------------------------------------------------------- /items/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/items/.DS_Store -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/.DS_Store -------------------------------------------------------------------------------- /views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/views/.DS_Store -------------------------------------------------------------------------------- /public/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/css/.DS_Store -------------------------------------------------------------------------------- /public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/1.jpg -------------------------------------------------------------------------------- /public/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/10.jpg -------------------------------------------------------------------------------- /public/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/11.jpg -------------------------------------------------------------------------------- /public/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/12.jpg -------------------------------------------------------------------------------- /public/images/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/13.jpg -------------------------------------------------------------------------------- /public/images/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/14.jpg -------------------------------------------------------------------------------- /public/images/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/15.jpg -------------------------------------------------------------------------------- /public/images/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/16.jpg -------------------------------------------------------------------------------- /public/images/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/17.jpg -------------------------------------------------------------------------------- /public/images/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/18.jpg -------------------------------------------------------------------------------- /public/images/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/19.jpg -------------------------------------------------------------------------------- /public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/2.jpg -------------------------------------------------------------------------------- /public/images/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/20.jpg -------------------------------------------------------------------------------- /public/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/3.jpg -------------------------------------------------------------------------------- /public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/4.jpg -------------------------------------------------------------------------------- /public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/5.jpg -------------------------------------------------------------------------------- /public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/6.jpg -------------------------------------------------------------------------------- /public/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/7.jpg -------------------------------------------------------------------------------- /public/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/8.jpg -------------------------------------------------------------------------------- /public/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/9.jpg -------------------------------------------------------------------------------- /public/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/.DS_Store -------------------------------------------------------------------------------- /public/img/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/doge.png -------------------------------------------------------------------------------- /public/img/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/ipad.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/logo.png -------------------------------------------------------------------------------- /public/img/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/paypal.png -------------------------------------------------------------------------------- /public/img/phones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/phones.png -------------------------------------------------------------------------------- /public/img/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/pic1.jpg -------------------------------------------------------------------------------- /public/img/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/rating.png -------------------------------------------------------------------------------- /public/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/js/.DS_Store -------------------------------------------------------------------------------- /public/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/.DS_Store -------------------------------------------------------------------------------- /public/img/dogeold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/dogeold.png -------------------------------------------------------------------------------- /public/img/headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/headshot.png -------------------------------------------------------------------------------- /public/img/intro-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/intro-bg.jpg -------------------------------------------------------------------------------- /public/img/ipadold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/ipadold.png -------------------------------------------------------------------------------- /public/img/shipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/shipping.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Entry to January 2014 Social Good Hackathon 2 | 3 | Deployment: http://muka.herokuapp.com/ 4 | -------------------------------------------------------------------------------- /public/images/crafter1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/crafter1.jpg -------------------------------------------------------------------------------- /public/images/crafter2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/crafter2.jpg -------------------------------------------------------------------------------- /public/images/crafter3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/images/crafter3.jpg -------------------------------------------------------------------------------- /public/img/amazonlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/amazonlogo.png -------------------------------------------------------------------------------- /public/img/banner-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/banner-bg.jpg -------------------------------------------------------------------------------- /public/img/buybutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/buybutton.png -------------------------------------------------------------------------------- /public/img/headshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/headshot1.png -------------------------------------------------------------------------------- /public/img/headshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/headshot2.png -------------------------------------------------------------------------------- /public/img/headshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/headshot3.png -------------------------------------------------------------------------------- /public/img/intro-bg0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/intro-bg0.jpg -------------------------------------------------------------------------------- /public/img/intro-bgold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/intro-bgold.jpg -------------------------------------------------------------------------------- /public/img/phonesold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/phonesold.png -------------------------------------------------------------------------------- /public/innerpage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/.DS_Store -------------------------------------------------------------------------------- /public/img/banner-bgold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/img/banner-bgold.jpg -------------------------------------------------------------------------------- /public/stylesheets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/stylesheets/.DS_Store -------------------------------------------------------------------------------- /public/innerpage/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/css/.DS_Store -------------------------------------------------------------------------------- /public/innerpage/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/js/.DS_Store -------------------------------------------------------------------------------- /public/innerpage/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/fonts/.DS_Store -------------------------------------------------------------------------------- /public/innerpage/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/.DS_Store -------------------------------------------------------------------------------- /public/innerpage/images/like.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/like.jpg -------------------------------------------------------------------------------- /public/innerpage/images/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/like.png -------------------------------------------------------------------------------- /public/innerpage/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/logo.png -------------------------------------------------------------------------------- /public/innerpage/images/tala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/tala.jpg -------------------------------------------------------------------------------- /public/innerpage/images/alibata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/alibata.jpg -------------------------------------------------------------------------------- /public/innerpage/images/crafter1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/crafter1.jpg -------------------------------------------------------------------------------- /public/innerpage/images/crafter2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/crafter2.jpg -------------------------------------------------------------------------------- /public/innerpage/images/crafter3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/crafter3.jpg -------------------------------------------------------------------------------- /public/innerpage/images/dislike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/dislike.jpg -------------------------------------------------------------------------------- /public/innerpage/images/dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/dislike.png -------------------------------------------------------------------------------- /public/innerpage/images/mulakas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/mulakas.jpg -------------------------------------------------------------------------------- /public/innerpage/images/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/rating.png -------------------------------------------------------------------------------- /public/innerpage/images/shoe_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_1.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_2.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_3.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_4.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_5.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_6.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_7.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_8.jpg -------------------------------------------------------------------------------- /public/innerpage/images/shoe_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/shoe_9.jpg -------------------------------------------------------------------------------- /public/innerpage/overflow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/overflow/.DS_Store -------------------------------------------------------------------------------- /public/innerpage/overflow/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/overflow/js/.DS_Store -------------------------------------------------------------------------------- /public/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_1.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_1.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_2.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_2.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_3.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_3.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_4.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_4.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_5.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_5.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_6.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_6.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_7.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_7.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_8.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_8.png -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_9.jpg -------------------------------------------------------------------------------- /public/innerpage/images/thumbnail_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/images/thumbnail_9.png -------------------------------------------------------------------------------- /public/innerpage/overflow/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/overflow/css/.DS_Store -------------------------------------------------------------------------------- /public/innerpage/overflow/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/overflow/fonts/.DS_Store -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /routes/user.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * GET users listing. 4 | */ 5 | 6 | exports.list = function(req, res){ 7 | res.send("respond with a resource"); 8 | }; -------------------------------------------------------------------------------- /public/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/innerpage/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/innerpage/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/innerpage/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /views/layout.jade: -------------------------------------------------------------------------------- 1 | doctype html 2 | html 3 | head 4 | title= title 5 | link(rel='stylesheet', href='/stylesheets/style.css') 6 | body 7 | block content -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /public/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/innerpage/overflow/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/overflow/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/innerpage/overflow/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/overflow/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/innerpage/overflow/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/Muka/master/public/innerpage/overflow/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "application-name", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node app.js" 7 | }, 8 | "dependencies": { 9 | "express": "3.4.3", 10 | "jade": "*" 11 | } 12 | } -------------------------------------------------------------------------------- /public/innerpage/overflow/css/portfolio-item.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 50px; /* 50px is the height of the navbar - change this if the navbarn height changes */ 3 | } 4 | 5 | .portfolio-item { 6 | margin-bottom: 25px; 7 | } 8 | 9 | footer { 10 | margin: 50px 0; 11 | } 12 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; 4 | background: url(images/bg.jpg) repeat-x bottom; 5 | color:white; 6 | } 7 | 8 | a { 9 | color: #00B7FF; 10 | } 11 | 12 | .navbar div.container div.collapse ul.nav li { 13 | margin-top:5px; 14 | } -------------------------------------------------------------------------------- /.idea/Muka.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /public/stylesheets/portfolio-item.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 50px; /* 50px is the height of the navbar - change this if the navbarn height changes */ 3 | } 4 | 5 | .portfolio-item { 6 | margin-bottom: 25px; 7 | } 8 | 9 | footer { 10 | margin: 50px 0; 11 | } 12 | 13 | .navbar div.container div.collapse ul.nav li { 14 | margin-top:5px; 15 | } 16 | -------------------------------------------------------------------------------- /public/stylesheets/3-col-portfolio.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 50px; /* 50px is the height of the navbar - change this if the navbarn height changes */ 3 | } 4 | 5 | .portfolio-item { 6 | margin-bottom: 25px; 7 | } 8 | 9 | footer { 10 | margin: 50px 0; 11 | } 12 | 13 | .navbar div.container div.collapse ul.nav li { 14 | margin-top:5px; 15 | } 16 | -------------------------------------------------------------------------------- /public/innerpage/css/3-col-portfolio.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 50px; /* 50px is the height of the navbar - change this if the navbarn height changes */ 3 | } 4 | 5 | .portfolio-item { 6 | margin-bottom: 25px; 7 | } 8 | 9 | footer { 10 | margin: 50px 0; 11 | } 12 | 13 | img { 14 | border:1px solid #EEE; 15 | padding:6px; 16 | } 17 | 18 | img:hover { 19 | opacity:0.8; 20 | } 21 | -------------------------------------------------------------------------------- /public/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /public/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /public/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/progression.min.css: -------------------------------------------------------------------------------- 1 | .percent{display:block;color:#fff;font-size:12px;margin-left:5px;height:auto;position:absolute;top:2px}.triangle_right{width:0;height:0;border-style:solid;border-width:7.5px 10px 7.5px 0;border-color:transparent rgba(255,255,255,.3) transparent transparent;display:block;position:absolute;left:-10px;top:10px}.triangle_left{width:0;height:0;border-style:solid;border-width:7.5px 0 7.5px 10px;border-color:transparent transparent transparent rgba(255,255,255,.3);display:block;position:absolute;right:-10px;top:10px}.tooltip p{color:white;margin-bottom:10px;font-size:14px}.percentagebarinner{width:0;background:#FFF;height:20px;background:#6ea5e1;position:relative}.percentagebar{width:100%;position:relative;background:#FFF;height:20px} -------------------------------------------------------------------------------- /public/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /public/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon-rotate(@degrees, @rotation) { 5 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); 6 | -webkit-transform: rotate(@degrees); 7 | -moz-transform: rotate(@degrees); 8 | -ms-transform: rotate(@degrees); 9 | -o-transform: rotate(@degrees); 10 | transform: rotate(@degrees); 11 | } 12 | 13 | .fa-icon-flip(@horiz, @vert, @rotation) { 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); 15 | -webkit-transform: scale(@horiz, @vert); 16 | -moz-transform: scale(@horiz, @vert); 17 | -ms-transform: scale(@horiz, @vert); 18 | -o-transform: scale(@horiz, @vert); 19 | transform: scale(@horiz, @vert); 20 | } 21 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon-rotate($degrees, $rotation) { 5 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation); 6 | -webkit-transform: rotate($degrees); 7 | -moz-transform: rotate($degrees); 8 | -ms-transform: rotate($degrees); 9 | -o-transform: rotate($degrees); 10 | transform: rotate($degrees); 11 | } 12 | 13 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation); 15 | -webkit-transform: scale($horiz, $vert); 16 | -moz-transform: scale($horiz, $vert); 17 | -ms-transform: scale($horiz, $vert); 18 | -o-transform: scale($horiz, $vert); 19 | transform: scale($horiz, $vert); 20 | } 21 | -------------------------------------------------------------------------------- /public/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: spin 2s infinite linear; 6 | -moz-animation: spin 2s infinite linear; 7 | -o-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | } 10 | 11 | @-moz-keyframes spin { 12 | 0% { -moz-transform: rotate(0deg); } 13 | 100% { -moz-transform: rotate(359deg); } 14 | } 15 | @-webkit-keyframes spin { 16 | 0% { -webkit-transform: rotate(0deg); } 17 | 100% { -webkit-transform: rotate(359deg); } 18 | } 19 | @-o-keyframes spin { 20 | 0% { -o-transform: rotate(0deg); } 21 | 100% { -o-transform: rotate(359deg); } 22 | } 23 | @-ms-keyframes spin { 24 | 0% { -ms-transform: rotate(0deg); } 25 | 100% { -ms-transform: rotate(359deg); } 26 | } 27 | @keyframes spin { 28 | 0% { transform: rotate(0deg); } 29 | 100% { transform: rotate(359deg); } 30 | } 31 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: spin 2s infinite linear; 6 | -moz-animation: spin 2s infinite linear; 7 | -o-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | } 10 | 11 | @-moz-keyframes spin { 12 | 0% { -moz-transform: rotate(0deg); } 13 | 100% { -moz-transform: rotate(359deg); } 14 | } 15 | @-webkit-keyframes spin { 16 | 0% { -webkit-transform: rotate(0deg); } 17 | 100% { -webkit-transform: rotate(359deg); } 18 | } 19 | @-o-keyframes spin { 20 | 0% { -o-transform: rotate(0deg); } 21 | 100% { -o-transform: rotate(359deg); } 22 | } 23 | @-ms-keyframes spin { 24 | 0% { -ms-transform: rotate(0deg); } 25 | 100% { -ms-transform: rotate(359deg); } 26 | } 27 | @keyframes spin { 28 | 0% { transform: rotate(0deg); } 29 | 100% { transform: rotate(359deg); } 30 | } 31 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Module dependencies. 4 | */ 5 | 6 | var express = require('express'); 7 | var routes = require('./routes'); 8 | 9 | var http = require('http'); 10 | var path = require('path'); 11 | 12 | var app = express(); 13 | 14 | // all environments 15 | 16 | app.set('port', process.env.PORT || 2999); 17 | app.set('views', path.join(__dirname, 'views')); 18 | app.set('view engine', 'jade'); 19 | app.use(express.favicon()); 20 | app.use(express.logger('dev')); 21 | app.use(express.bodyParser()); 22 | app.use(express.methodOverride()); 23 | app.use(app.router); 24 | app.use(express.static(path.join(__dirname, 'public'))); 25 | 26 | // development only 27 | if ('development' == app.get('env')) { 28 | app.use(express.errorHandler()); 29 | } 30 | 31 | app.get('/getItem', routes.getItem); 32 | app.post('/recordFeedback', routes.recordFeedback); 33 | 34 | http.createServer(app).listen(app.get('port'), function(){ 35 | console.log('Express server listening on port ' + app.get('port')); 36 | }); 37 | -------------------------------------------------------------------------------- /public/innerpage/js/MIT-License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013 Compzets.com 2 | http://www.compzets.com 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. -------------------------------------------------------------------------------- /public/innerpage/js/animatescroll.noeasing.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @build : 20-07-2013 3 | * @author : Ram swaroop 4 | * @site : Compzets.com 5 | */ 6 | (function($){ 7 | 8 | $.fn.animatescroll = function(options) { 9 | 10 | // fetches options 11 | var opts = $.extend({},$.fn.animatescroll.defaults,options); 12 | 13 | if(opts.element == "html,body") { 14 | // Get the distance of particular id or class from top 15 | var offset = this.offset().top; 16 | 17 | // Scroll the page to the desired position 18 | $(opts.element).stop().animate({ scrollTop: offset - opts.padding}, opts.scrollSpeed, opts.easing); 19 | } 20 | else { 21 | // Scroll the element to the desired position 22 | $(opts.element).stop().animate({ scrollTop: this.offset().top - this.parent().offset().top + this.parent().scrollTop() - opts.padding}, opts.scrollSpeed, opts.easing); 23 | } 24 | 25 | }; 26 | 27 | // default options 28 | $.fn.animatescroll.defaults = { 29 | easing:"swing", 30 | scrollSpeed:800, 31 | padding:0, 32 | element:"html,body" 33 | }; 34 | 35 | }(jQuery)); -------------------------------------------------------------------------------- /public/innerpage/js/animatescroll.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animatescroll", 3 | "title": "AnimateScroll", 4 | "description": "A Simple jQuery Plugin for Animating Scroll with more than 30 unique easing effects", 5 | "keywords": [ 6 | "animatescroll", 7 | "scrollanimate", 8 | "scroll", 9 | "animation", 10 | "scrollto" 11 | ], 12 | "version": "1.0.6", 13 | "author": { 14 | "name": "Ram Swaroop", 15 | "email": "ramswarooppatra@gmail.com", 16 | "url": "http://www.ramswaroop.me" 17 | }, 18 | "maintainers": [ 19 | { 20 | "name": "Compzets.com", 21 | "email": "support@compzets.com", 22 | "url": "http://www.compzets.com" 23 | } 24 | ], 25 | "licenses": [ 26 | { 27 | "type": "MIT", 28 | "url": "https://github.com/ramswaroop/animatescroll.js/blob/master/MIT-License.txt" 29 | } 30 | ], 31 | "bugs": "https://github.com/ramswaroop/animatescroll.js/issues", 32 | "homepage": "http://plugins.compzets.com/animatescroll", 33 | "demo": "http://plugins.compzets.com/animatescroll", 34 | "docs": "https://github.com/ramswaroop/animatescroll.js/blob/master/README.md", 35 | "dependencies": { 36 | "jquery": ">=1.5" 37 | } 38 | } -------------------------------------------------------------------------------- /public/innerpage/js/itemPick.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | 5 | var currentItemId = null; 6 | $(".dial").knob({ 7 | readOnly: true 8 | }); 9 | 10 | $('.carousel').roundabout({ 11 | shape: 'square', 12 | btnNext: '.dislikeButton', 13 | btnPrev: '.likeButton', 14 | duration: 1200 15 | 16 | }); 17 | 18 | 19 | var getItem1 = function(){ 20 | 21 | $.get('/getItem',function(data){ 22 | data = JSON.parse(data); 23 | $('.itemName1').html(data.itemName) 24 | $('.itemPrice1').html(data.itemPrice) 25 | $('.itemDescription1').html(data.itemDescription) 26 | $('.itemImage1').attr("src",data.itemImage); 27 | $('.crafterImg').attr("src",data.crafterImg); 28 | $('.crafterBio').html(data.crafterBio); 29 | $('.crafterName').html(data.crafterName); 30 | $('.crafterUrl').attr('href', data.crafterUrl) 31 | currentItemId1 = data.itemId; 32 | $('.dial') 33 | .val(data.itemScore) 34 | .trigger('change'); 35 | }); 36 | }; 37 | 38 | var getItem2 = function(){ 39 | 40 | $.get('/getItem',function(data){ 41 | data = JSON.parse(data); 42 | $('.itemName2').html(data.itemName) 43 | $('.itemPrice2').html(data.itemPrice) 44 | $('.itemDescription2').html(data.itemDescription) 45 | $('.itemImage2').attr("src",data.itemImage); 46 | $('.crafterImg').attr("src",data.crafterImg); 47 | $('.crafterBio').html(data.crafterBio); 48 | $('.crafterName').html(data.crafterName); 49 | $('.crafterUrl').attr('href', data.crafterUrl) 50 | currentItemId2 = data.itemId; 51 | $('.dial') 52 | .val(data.itemScore) 53 | .trigger('change'); 54 | }); 55 | }; 56 | 57 | 58 | 59 | 60 | 61 | getItem1(); 62 | getItem2(); 63 | 64 | 65 | $('.like1').on('click',function(){ 66 | $.post('/recordFeedback', 67 | { 68 | itemId: currentItemId1, 69 | score: 1 70 | },function(){ 71 | setTimeout(getItem1,500); 72 | }); 73 | }); 74 | 75 | $('.dislike1').on('click',function(){ 76 | $.post('/recordFeedback', 77 | { 78 | itemId: currentItemId1, 79 | score: -1 80 | },function(){ 81 | setTimeout(getItem1,500); 82 | }); 83 | }); 84 | 85 | $('.like2').on('click',function(){ 86 | $.post('/recordFeedback', 87 | { 88 | itemId: currentItemId2, 89 | score: 1 90 | },function(){ 91 | setTimeout(getItem2,500); 92 | }); 93 | }); 94 | 95 | $('.dislike2').on('click',function(){ 96 | $.post('/recordFeedback', 97 | { 98 | itemId: currentItemId2, 99 | score: -1 100 | },function(){ 101 | setTimeout(getItem2,500); 102 | }); 103 | }); 104 | 105 | 106 | 107 | }); 108 | 109 | 110 | -------------------------------------------------------------------------------- /public/progression.min.js: -------------------------------------------------------------------------------- 1 | (function(e,t,n,r){function o(t,n){this.element=t;this.$elem=e(this.element);this.options=e.extend({},s,n);this._defaults=s;this._name=i;this.init()}var i="progression",s={tooltipWidth:"200",tooltipPosition:"right",tooltipOffset:"50",showProgressBar:true,showHelper:true,validator:false,tooltipFontSize:"14",tooltipFontColor:"ffffff",progressBarBackground:"ffffff",progressBarColor:"6EA5E1",tooltipBackgroundColor:"a2cbfa",tooltipPadding:"10",tooltipAnimate:true};o.prototype={init:function(){function t(e,t){return t/e*100}data_prog=this.$elem.css("position","relative").find("[data-progression]");items=data_prog.length;thisid=this.$elem.attr("id");firstoffset=data_prog.first().position().top;firsthelper=data_prog.first().attr("data-helper");if(data_prog.first().attr("data-helper")!==r){firsthelper=data_prog.first().attr("data-helper")}else{firsthelper=""}if(this.options.showProgressBar===false){$display="display:none;"}else{$display=""}if(this.options.showHelper===false){$display2="display:none;"}else{$display2=""}var n=this.options.tooltipAnimate?"-webkit-transition: top .3s ease-in-out;-moz-transition: top .3s ease-in-out;-o-transition: top .3s ease-in-out;transition: top .3s ease-in-out;":"";var i=this.options.tooltipAnimate?"-webkit-transition: width .3s ease-in-out;-moz-transition: width .3s ease-in-out;-o-transition: width .3s ease-in-out;transition: width .3s ease-in-out;":"";var s=this.options.tooltipPosition=="right"?"border-color: transparent #"+this.options.tooltipBackgroundColor+" transparent transparent;":"border-color: transparent transparent transparent #"+this.options.tooltipBackgroundColor+"";marginRight=parseInt(this.options.tooltipWidth)+parseInt(this.options.tooltipOffset);myhtml=e('

1/'+items+" "+firsthelper+'

0%
");this.$elem.prepend(myhtml);thiswidth=this.$elem.find(".syco_tooltip").width();data_prog.each(function(){var n=e(this);var i=n.position().top;n.bind("live focus change",function(){thisprogressionlength=n.parent().parent().find("[data-progression]").length;alldataprogression=n.parent().parent().find("[data-progression]");thisid2=n.parent().parent().attr("id");thistooltip=e('[data-tooltip="'+thisid2+'"]');thishelper=n.attr("data-helper");if(n.attr("data-helper")!==r){thishelper=n.attr("data-helper")}else{thishelper=""}index=parseInt(e("#"+thisid2).find("[data-progression]").index(n))+1;percentage=t(thisprogressionlength,index).toFixed(0);thistooltip.find("p").html(''+index+"/"+thisprogressionlength+" "+thishelper).parent().find(".percentagebarinner").css("width",parseInt(percentage)+"%").next().html(parseInt(percentage)+"%");thistooltip.css("top",i+"px")})})},yourOtherFunction:function(e,t){}};e.fn[i]=function(t){return this.each(function(){if(!e.data(this,"plugin_"+i)){e.data(this,"plugin_"+i,new o(this,t))}})}})(jQuery,window,document) -------------------------------------------------------------------------------- /public/innerpage/js/README.md: -------------------------------------------------------------------------------- 1 | AnimateScroll 2 | ============= 3 | 4 | A Simple jQuery Plugin for Animating the Scroll 5 | 6 | Demo can be seen at http://plugins.compzets.com/animatescroll 7 | 8 | 9 | What is it exactly? 10 | ------------------- 11 | 12 | AnimateScroll is a jQuery plugin which enables you to scroll to any part of the page in style by just calling the animatescroll() function with the Id or Classname of the element where you want to scroll to. 13 | 14 | It gives power to the user with its various options to customize the style of scrolling, scroll speed and many more. Supports more than 30 unique Scrolling Styles. 15 | 16 | 17 | Options 18 | ------- 19 | 20 | AnimateScroll has 3 options: 21 | 22 | easing 23 | scrollSpeed 24 | padding 25 | 26 | easing : This option defines the scrolling style. The various easing effects supported can be seen at www.easings.net (Accepts string only) 27 | 28 | scrollSpeed : Controls the scrolling speed, higher is the number slower is the scroll speed (Accepts only number) 29 | 30 | padding : Adjusts little ups and downs in scrolling. Suppose a small amount of padding is applied to a particular element due to which the scroll didn't end at the right position, so this option helps you to rectify (Accepts numbers only, can be negative) 31 | 32 | Added in v1.0.5 33 | 34 | 4th option: 35 | 36 | element 37 | 38 | element : The element in which you want this plugin to work. Default is "body". (Accepts any jQuery/CSS selector) 39 | 40 | Easing Effects 41 | -------------- 42 | 43 | This plugin supports more than 30 different styles of scrolling. The easing option lets you choose a particular style of scrolling according to your choice. 44 | 45 | The different easing effects are: 46 | 47 |
swing, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeInQuart,
48 | easeOutQuart, easeInOutQuart, easeInQuint, easeOutQuint, easeInOutQuint, easeInSine, easeOutSine, easeInOutSine,
49 | easeInExpo, easeOutExpo, easeInOutExpo, easeInCirc, easeOutCirc, easeInOutCirc, easeInElastic, easeOutElastic,
50 | easeInOutElastic, easeInBack, easeOutBack, easeInOutBack, easeInBounce, easeOutBounce, easeInOutBounce
51 | 52 | 53 | Usage 54 | ----- 55 | 56 | You need two things for this plugin to work, one is "jQuery library" and the other "animatescroll.js" file. 57 | 58 | Just include the "animatescroll.js" file after the "jQuery library" as shown in the code snippet below and you're done. 59 | 60 | NOTE: The only dependency for this plugin to work is jQuery library. 61 | 62 |
63 | 
64 | <html>
65 |     <head>
66 |         <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
67 |         <script src="animatescroll.js">
68 |     </head>
69 |     <body>
70 |         <div id="section-1">This is the element where you want to scroll to<div>
71 |         
72 |         // You may call the function like this
73 |         <a onclick="$('[id-or-class-of-element]').animatescroll();">Go to Element</a>
74 |     </body>
75 | </html>
76 | 
77 | 
78 | 79 | 80 | NOTE: There are two js files, if you do not want the various easing effects, you can use the animatescroll.noeasing.js 81 | 82 | 83 | 84 | About Me 85 | -------- 86 | 87 | My name is Ram Swaroop. I am a Programmer as well as a Designer. I am the Founder of Compzets.com, as well as various other online applications. 88 | 89 | This is my first jQuery Plugin and I hope you all like it. You are free to make more improvements to the code and can do the same @github. 90 | 91 | If my plugin helped you or unlikely for any issues tweet me @ramswarooppatra, will be happy to hear from you. 92 | -------------------------------------------------------------------------------- /public/innerpage/js/custom.css: -------------------------------------------------------------------------------- 1 | /* 2 | Document : style 3 | Created on : 20 Jul, 2013, 3:58:03 PM 4 | Author : RAM 5 | */ 6 | @import url(http://fonts.googleapis.com/css?family=Lato:300,400,700); 7 | *, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } 8 | body, html { font-size: 15px; padding: 0; margin: 0;} 9 | /* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */ 10 | .clearfix:before, .clearfix:after { content: " "; display: table; } 11 | .clearfix:after { clear: both; } 12 | body { 13 | font-family: 'Lato', Calibri, Arial, sans-serif; 14 | color: #89867e; 15 | background: #f9f9f9; 16 | } 17 | a { 18 | color: #333; 19 | text-decoration: none; 20 | } 21 | a:hover { 22 | color: #fff; 23 | } 24 | .main, 25 | .container > header { 26 | width: 100%; 27 | margin: 0 auto; 28 | padding: 2em; 29 | } 30 | .main { 31 | max-width: 82.667em; 32 | min-height: 40em; 33 | } 34 | .container > header { 35 | text-align: center; 36 | font-size: 16px; 37 | padding: 4em 2em 3em; 38 | background: rgba(0,0,0,0.01); 39 | } 40 | .container > header h1 { 41 | font-size: 2.625em; 42 | line-height: 1.3; 43 | margin: 0; 44 | font-weight: 700; 45 | } 46 | .container > header span { 47 | display: block; 48 | font-size: 60%; 49 | color: #ceccc6; 50 | padding: 0 0 0.6em 0.1em; 51 | font-weight:300; 52 | } 53 | @media screen and (max-width: 25em) { 54 | .codrops-icon span { 55 | display: none; 56 | } 57 | .container > header { 58 | font-size: 75%; 59 | } 60 | } 61 | [id^="section-"]{margin-top:-20px;padding:25px;padding-top:5px} 62 | [id^="section-"] h1,[id^="section-"] h3{font-family: 'Lato', Calibri, Arial, sans-serif;font-weight:300;color:#fff} 63 | [id^="section-"] .content-wrapper{color:#f2f2f2;font-size:20px;font-weight:100} 64 | [id^="section-"] .content-wrapper>pre{font-size:14px;display:inline-block} 65 | [id^="section-"] .content-wrapper a{color:#f2f2f2;border-bottom: 1px dotted white} 66 | [id^="section-"] .content-wrapper li{list-style:square} 67 | #section-1{background:rgb(208, 101, 3)} 68 | #section-2{background:rgb(233, 147, 26)} 69 | #section-3{background:rgb(22, 145, 190)} 70 | #section-4{background:rgb(22, 107, 162)} 71 | #section-5{background:rgb(27, 54, 71)} 72 | #section-6{background:rgb(21, 40, 54);margin-bottom:-30px} 73 | .btn{padding:10px;border:3px solid #fff;background-color:transparent;color:#fff;font-weight:700;text-transform:uppercase;display:inline-block} 74 | .btn:hover{border-style:dashed;cursor:pointer} 75 | .btn:active,.demo-btn:active{border-style:dotted} 76 | .demo-btn{position:absolute;margin-top:12px;margin-left:40px} 77 | .element-demo{height:150px;margin:0.5em 0;padding:1em;font-family:Consolas,Monaco,'Andale Mono',monospace;text-shadow:0 -0.1em 0.2em black;border:0.3em solid #545454;border-radius:0.5em;background:none repeat scroll 0 0 #141414;box-shadow:1px 1px 0.5em black inset;overflow:auto} 78 | .easing-buttons{margin-top:80px} 79 | .download-buttons{margin-top:350px} 80 | .fl{float:left} 81 | .fr{float:right} 82 | .disp-inl{display:inline} 83 | .disp_inl_blk{display:inline-block} 84 | .w30{width:30%} 85 | .w50{width:50%} 86 | .w60{width:60%} 87 | .w70{width:70%} 88 | .ptr{cursor:pointer} 89 | /* For Responsiveness */ 90 | @media (min-width:32.5em) and (max-width: 61.250em) { 91 | [id^="section-"] .content-wrapper{font-size:1.2em} 92 | [id^="section-"] .content-wrapper>pre{display:block} 93 | .demo-btn{position:relative} 94 | .easing-buttons,.download-buttons{margin-top:0} 95 | .fr{float:none} 96 | .w30,.w60,.w70{width:100%} 97 | } 98 | @media (min-width: 32.5em) and (max-width: 38.688em) { 99 | [id^="section-"] .content-wrapper{font-size:1.1em} 100 | [id^="section-"] .content-wrapper>pre{display:block} 101 | .demo-btn{position:relative} 102 | .easing-buttons,.download-buttons{margin-top:0} 103 | .fr{float:none} 104 | .w30,.w60,.w70{width:100%} 105 | } 106 | @media (max-width: 32.438em) { 107 | [id^="section-"] .content-wrapper{font-size:1em} 108 | [id^="section-"] .content-wrapper>pre{display:block} 109 | .demo-btn{position:relative} 110 | .easing-buttons,.download-buttons{margin-top:0} 111 | .fr{float:none} 112 | .w30,.w60,.w70{width:100%} 113 | } -------------------------------------------------------------------------------- /public/innerpage/overflow/item.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Single Portfolio Item Template for Bootstrap 3 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 48 | 49 |
50 | 51 |
52 | 53 |
54 |

Portfolio Item 55 | Explain Your Work 56 |

57 |
58 | 59 |
60 | 61 |
62 | 63 |
64 | 65 |
66 | 67 |
68 |

Project Description

69 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricies, justo eu convallis placerat, felis enim.

70 |

Project Details

71 |
    72 |
  • Lorem Ipsum
  • 73 |
  • Dolor Sit Amet
  • 74 |
  • Consectetur
  • 75 |
  • Adipiscing Elit
  • 76 |
77 |
78 | 79 |
80 | 81 |
82 | 83 |
84 | 85 |
86 | 87 |
88 | 89 | 90 | 91 |
92 | 93 |
94 | 95 | 96 | 97 |
98 | 99 |
100 | 101 | 102 | 103 |
104 | 105 |
106 | 107 | 108 | 109 |
110 | 111 |
112 | 113 |
114 | 115 | 116 |
117 | 118 |
119 | 120 | 127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | -------------------------------------------------------------------------------- /public/innerpage/item1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 50 | 51 |
52 | 53 |
54 | 55 |
56 |

Red Rocket 57 | $59.99 58 |

59 |
60 | 61 |
62 | 63 |
64 | 65 |
66 | 67 |
68 | 69 |
70 |

Product Description

71 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricies, justo eu convallis placerat, felis enim.

72 |

Product Details

73 |
    74 |
  • Full grain imported
  • 75 |
  • Proforated striping
  • 76 |
  • Synthetic lining
  • 77 |
  • Smooth finish
  • 78 |
  • Tonal rubber outsole for grip
  • 79 |
80 |
81 | 82 |
83 | 84 |
85 | 86 |
87 | 88 |
89 | 90 |
91 | 92 | 93 | 94 |
95 | 96 |
97 | 98 | 99 | 100 |
101 | 102 |
103 | 104 | 105 | 106 |
107 | 108 |
109 | 110 | 111 | 112 | 113 |
114 | 115 |
116 | 117 |
118 | 119 | 120 |
121 | 122 |
123 | 124 | 132 | 133 |
134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /public/innerpage/crafter3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 50 | 51 |
52 | 53 |
54 | 55 |
56 |

Crafter Biography: Alibata 57 |

58 |
59 | 60 |
61 | 62 |
63 | 64 |
65 | 66 |
67 |
68 |
69 |
70 |
71 | 72 |
73 |

My Story:

74 |

Representing the strong end of the community, Alibata's masculinity is exhibited in his furniture. A strong sense of pride and integrity motivates him to bring income to the remote Waray ethnic group in Southern Leyte. He specializes in building strong minimalist pieces that reflect a silent humility which will surely be felt and appreciated.

75 |

Mangyan Tribe:

76 |

The Waray inhabit the islands of Samar and Biliran, and the eastern section of Leyte in the Eastern Visayas Region. The Waray language belongs to the Visayan language family and is related to Cebuano, Hiligaynon, and Masbateño. 77 | The Waray-speaking people of Leyte (Leyteños) and Samar (Samareños) are a strong and proud group. They produce some of the finest native Philippine wines, commonly called pangasi and tuba. Hats and mats made from buri or tikug plant strips, which are still heavily used in the rural areas today, are the most distinctive handicrafts of the Warays. 78 |

79 | 80 | 81 |
82 | 83 |
84 | 85 | 86 |
87 | 88 |
89 | 90 |
91 | 92 | 93 | 94 |
95 | 96 |
97 | 98 | 99 |
100 |
101 | 109 | 110 |
111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /public/innerpage/crafter1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 50 | 51 |
52 | 53 |
54 | 55 |
56 |

Crafter Biography: Mulakas 57 |

58 |
59 | 60 |
61 | 62 |
63 | 64 |
65 | 66 |
67 |
68 |
69 |
70 |
71 | 72 |
73 |

My Story:

74 |

Mulakas is one the village elderly in the Mangyan tribe. He has 50 years of experience under his belt constructing furniture made of bamboo and rattan. Even after the age of retirement, he still struggles to provide for his wife, children, and grandchildren. Aside from creating one a kind pieces, Mulakas enjoys tending to his tiny herb garden located he shares with his family.

75 |

Mangyan Tribe:

76 |

The plains of Occidental Mindoro are inhabited by the Tagalogs and the remote 77 | forested interior by the Mangyans. Extensive tribal settlements of Mangyans in the province belong to such sub-groups as the Iraya, Alangan, Tadyawan, Buhid, Hanunuo, and Bangon. The Mangyans are simple people. They were once coastal dwellers driven into the mountains to avoid religious conversion by the Spaniards, raids by Moro pirates, and the influx of recent migrants. They now lead a semi-nomadic existence. Mangyans live in loose clusters of up to 20 bamboo huts with thatched roofs and raised floors. They sometimes are away from their families for many weeks in search of food. Men wear a loincloth of pounded bark while the women have a coil of woven nito, a sturdy black vine, and rattan around their hips. Mangyans practice animism and are superstitious. 78 |

79 | 80 | 81 |
82 |
83 | 84 | 85 |
86 | 87 |
88 |
89 |
90 |
91 | 92 | 93 | 94 | 95 |
96 |
97 | 105 | 106 |
107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /public/innerpage/crafter2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 50 |
51 | 52 |
53 | 54 |
55 |

Crafter Biography: Tala 56 |

57 |
58 | 59 |
60 | 61 |
62 | 63 |
64 | 65 |
66 |
67 |
68 |
69 |
70 | 71 |
72 |

My Story:

73 |

At the age of 18, Tala is already a master of weaving natural fibers in to one of a kind furniture pieces. She enjoys creating colorful patterns with her close knit Aeta community. Taught by her lola (grandmother) this is a tradition passed on from a long line of ancestors. This intricate art is her creative outlet and at the same time her only means of livelihood.She hopes to gain enough to one day achieve her dreams of being an interior design.

74 |

Aeta Tribe:

75 |

The Aeta live in the northern part of the Philippines on the island of Luzon. Historians and anthropologists debate precisely when and how they migrated here, the consensus being that they crossed from the island of Borneo between 20 and 30 thousand years ago, using a land bridge that was partially covered by water around 5,000 years ago — the remaining part of which is now the island of Palawan. Whatever the migration path was, they are without doubt among the first — if not the first — inhabitants of the Philippines. One area of that country where the Aetas had lived for thousands of years was Mount Pinatubo. An active volcano, it erupted in June of 1991. The eruption was one of the worst in history and was devastating to the nearby Aeta population. Around a quarter million people lost their home — many of them Aetas. Although the Filipinos are still cleaning up the ash to this day, the Aetas have long since re-settled in urban areas of Luzon. It is doubtful they will ever return to their former homeland. 76 |

77 | 78 | 79 |
80 | 81 |
82 | 83 | 84 |
85 | 86 |
87 | 88 |
89 | 90 | 91 | 92 |
93 | 94 |
95 | 96 | 97 |
98 |
99 | 107 | 108 |
109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /public/innerpage/js/jquery.roundabout-shapes.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jQuery Roundabout Shapes v2 3 | * http://fredhq.com/projects/roundabout-shapes/ 4 | * 5 | * Provides additional paths along which items can move for the 6 | * jQuery Roundabout plugin (v1.0+). 7 | * 8 | * Terms of Use // jQuery Roundabout Shapes 9 | * 10 | * Open source under the BSD license 11 | * 12 | * Copyright (c) 2009-2011, Fred LeBlanc 13 | * All rights reserved. 14 | * 15 | * Redistribution and use in source and binary forms, with or without 16 | * modification, are permitted provided that the following conditions are met: 17 | * 18 | * - Redistributions of source code must retain the above copyright 19 | * notice, this list of conditions and the following disclaimer. 20 | * - Redistributions in binary form must reproduce the above 21 | * copyright notice, this list of conditions and the following 22 | * disclaimer in the documentation and/or other materials provided 23 | * with the distribution. 24 | * - Neither the name of the author nor the names of its contributors 25 | * may be used to endorse or promote products derived from this 26 | * software without specific prior written permission. 27 | * 28 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 29 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 30 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 31 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 32 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 33 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 34 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 35 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 36 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 37 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | */ 40 | jQuery.extend(jQuery.roundaboutShapes, 41 | { 42 | theJuggler: function(r, a, t) { 43 | return { 44 | x: Math.sin(r + a), 45 | y: Math.tan(Math.exp(Math.log(r)) + a) / (t - 1), 46 | z: (Math.cos(r + a) + 1) / 2, 47 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 48 | }; 49 | }, 50 | figure8: function(r, a, t) { 51 | return { 52 | x: Math.sin(r * 2 + a), 53 | y: (Math.sin(r + Math.PI/2 + a) / 8) * t, 54 | z: (Math.cos(r + a) + 1) / 2, 55 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 56 | }; 57 | }, 58 | waterWheel: function(r, a, t) { 59 | return { 60 | x: (Math.sin(r + Math.PI/2 + a) / 8) * t, 61 | y: Math.sin(r + a) / (Math.PI/2), 62 | z: (Math.cos(r + a) + 1) / 2, 63 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 64 | }; 65 | }, 66 | square: function(r, a, t) { 67 | var sq_x, sq_y, sq_z; 68 | 69 | if (r <= Math.PI/2) { 70 | sq_x = (2/Math.PI) * r; 71 | sq_y = -(2/Math.PI) * r + 1; 72 | sq_z = -(1/Math.PI) * r + 1; 73 | } else if (r > Math.PI/2 && r <= Math.PI) { 74 | sq_x = -(2/Math.PI) * r + 2; 75 | sq_y = -(2/Math.PI) * r + 1; 76 | sq_z = -(1/Math.PI) * r + 1; 77 | } else if (r > Math.PI && r <= (3 * Math.PI) / 2) { 78 | sq_x = -(2/Math.PI) * r + 2; 79 | sq_y = (2/Math.PI) * r - 3; 80 | sq_z = (1/Math.PI) * r - 1; 81 | } else { 82 | sq_x = (2/Math.PI) * r - 4; 83 | sq_y = (2/Math.PI) * r - 3; 84 | sq_z = (1/Math.PI) * r - 1; 85 | } 86 | 87 | return { 88 | x: sq_x, 89 | y: sq_y * t, 90 | z: sq_z, 91 | scale: sq_z 92 | }; 93 | }, 94 | conveyorBeltLeft: function(r, a, t) { 95 | return { 96 | x: -Math.cos(r + a), 97 | y: (Math.cos(r + 3*Math.PI/2 + a) / 8) * t, 98 | z: (Math.sin(r + a) + 1) / 2, 99 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 100 | }; 101 | }, 102 | conveyorBeltRight: function(r, a, t) { 103 | return { 104 | x: Math.cos(r + a), 105 | y: (Math.cos(r + 3*Math.PI/2 + a) / 8) * t, 106 | z: (Math.sin(r + a) + 1) / 2, 107 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 108 | }; 109 | }, 110 | goodbyeCruelWorld: function(r, a, t) { 111 | return { 112 | x: Math.sin(r + a), 113 | y: (Math.tan(r + 3*Math.PI/2 + a) / 8) * (t + 0.5), 114 | z: (Math.sin(r + a) + 1) / 2, 115 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 116 | }; 117 | }, 118 | diagonalRingLeft: function(r, a, t) { 119 | return { 120 | x: Math.sin(r + a), 121 | y: -Math.cos(r + Math.tan(Math.cos(a))) / (t + 1.5), 122 | z: (Math.cos(r + a) + 1) / 2, 123 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 124 | }; 125 | }, 126 | diagonalRingRight: function(r, a, t) { 127 | return { 128 | x: Math.sin(r + a), 129 | y: Math.cos(r + Math.tan(Math.cos(a))) / (t + 1.5), 130 | z: (Math.cos(r + a) + 1) / 2, 131 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 132 | }; 133 | }, 134 | rollerCoaster: function(r, a, t) { 135 | return { 136 | x: Math.sin(r + a), 137 | y: Math.sin((2 + t) * r), 138 | z: (Math.cos(r + a) + 1) / 2, 139 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 140 | }; 141 | }, 142 | tearDrop: function(r, a, t) { 143 | return { 144 | x: Math.sin(r + a), 145 | y: -Math.sin(r/2 + t) + 0.35, 146 | z: (Math.cos(r + a) + 1) / 2, 147 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 148 | }; 149 | }, 150 | tickingClock: function(r, a, t) { 151 | return { 152 | x: Math.cos(r + a - Math.PI/2), 153 | y: Math.sin(r + a - Math.PI/2), 154 | z: Math.cos(r), 155 | scale: Math.cos(r) + 0.5 156 | } 157 | }, 158 | flurry: function(r, a, t) { 159 | return { 160 | x: Math.sin(r * 3 + a), 161 | y: (Math.cos(r + Math.PI/2 + a) / 2) * t, 162 | z: (Math.cos(r + a) + 1) / 2, 163 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 164 | }; 165 | }, 166 | nowSlide: function(r, a, t) { 167 | return { 168 | x: Math.tan(r * 2 + a) * 0.5, 169 | y: Math.cos(r*2 + t) / 6, 170 | z: (Math.cos(r + a) + 1) / 2, 171 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 172 | }; 173 | }, 174 | risingEssence: function(r, a, t) { 175 | return { 176 | x: Math.sin(r + a), 177 | y: Math.tan((2 + t) * r), 178 | z: (Math.cos(r + a) + 1) / 2, 179 | scale: (Math.sin(r + Math.PI/2 + a) / 2) + 0.5 180 | }; 181 | } 182 | }); -------------------------------------------------------------------------------- /public/innerpage/css/portfolio-item.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 50px; /* 50px is the height of the navbar - change this if the navbarn height changes */ 3 | position: relative; 4 | } 5 | .navbar-brand{ 6 | padding: 0px !important; 7 | } 8 | 9 | .portfolio-item { 10 | margin-bottom: 25px; 11 | } 12 | 13 | footer { 14 | margin: 50px 0; 15 | } 16 | 17 | img { 18 | border:1px solid #EEE; 19 | padding:6px; 20 | height: 300px; 21 | width:300px; 22 | } 23 | 24 | img.logo_restore{ 25 | width: auto !important; 26 | height: auto !important; 27 | border : none; 28 | margin-top : 5px; 29 | } 30 | .itemImage { 31 | border:1px solid #EEE; 32 | padding:6px; 33 | height: 300px; 34 | width:300px; 35 | margin-left: 45px; 36 | } 37 | 38 | .itemName{ 39 | margin-left: 60px; 40 | } 41 | 42 | img:hover { 43 | opacity:0.8; 44 | } 45 | 46 | .itemScore{ 47 | display: inline; 48 | } 49 | 50 | .container{ 51 | position:relative; 52 | } 53 | .carousel{ 54 | margin-left: auto; 55 | margin-right: auto; 56 | width: 70%; 57 | position:relative; 58 | } 59 | 60 | .carousel li{ 61 | background-color: white; 62 | text-align:center; 63 | } 64 | 65 | .roundabout-holder { 66 | list-style: none; 67 | padding: 0; 68 | height: 40em; 69 | width: 50em; 70 | padding-left:500px; 71 | margin-left:30%; 72 | } 73 | .roundabout-moveable-item { 74 | margin-top:20px; 75 | height: 40em; 76 | width: 60em; 77 | cursor: pointer; 78 | background-color: white; 79 | border: 1px solid #EEE; 80 | } 81 | .roundabout-in-focus { 82 | cursor: auto; 83 | } 84 | 85 | .like{ 86 | width: 40%; 87 | } 88 | 89 | .dislike{ 90 | width: 40%; 91 | } 92 | 93 | .buyNow{ 94 | margin-right:auto; 95 | width:20%; 96 | } 97 | .buyNow:hover{ 98 | opacity: 0.7; 99 | } 100 | 101 | .row{ 102 | position:relative; 103 | } 104 | 105 | .similar{ 106 | z-index:200; 107 | 108 | } 109 | 110 | .sidebar{ 111 | position:absolute; 112 | width: 16%; 113 | height: 100%; 114 | padding-left: 19px; 115 | padding-right: 10px; 116 | } 117 | 118 | .crafterImg 119 | { 120 | width: 150px; 121 | height: 150px; 122 | border: none !important; 123 | } 124 | 125 | .rightCard{ 126 | padding-right: 20px; 127 | } 128 | 129 | 130 | .btn.btn-primary { 131 | background-color: #1ABC9C; 132 | } 133 | .btn.btn-large { 134 | font-size: 16.996px; 135 | line-height: 20px; 136 | padding: 12px 18px 13px; 137 | } 138 | .btn:first-child { 139 | } 140 | .btn { 141 | background: none repeat scroll 0 0 #BDC3C7; 142 | border: medium none; 143 | border-radius: 6px; 144 | box-shadow: none; 145 | color: #FFFFFF; 146 | line-height: 22px; 147 | padding: 9px 12px 10px; 148 | text-decoration: none; 149 | text-shadow: none; 150 | transition: all 0.25s ease 0s; 151 | } 152 | .btn, .btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover { 153 | font-size: 14.994px; 154 | font-weight: 500; 155 | } 156 | .btn-primary { 157 | background-color: #006DCC; 158 | 159 | background-repeat: repeat-x; 160 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); 161 | color: #FFFFFF; 162 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); 163 | } 164 | .btn-block { 165 | -moz-box-sizing: border-box; 166 | display: block; 167 | padding-left: 0; 168 | padding-right: 0; 169 | width: 100%; 170 | } 171 | .btn-large { 172 | border-radius: 6px; 173 | font-size: 17.5px; 174 | padding: 11px 19px; 175 | } 176 | .btn { 177 | -moz-border-bottom-colors: none; 178 | -moz-border-left-colors: none; 179 | -moz-border-right-colors: none; 180 | -moz-border-top-colors: none; 181 | background-color: #1ABC9C; 182 | background-repeat: repeat-x; 183 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #1ABC9C; 184 | border-image: none; 185 | border-radius: 4px; 186 | border-style: solid; 187 | border-width: 1px; 188 | box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); 189 | color: #FFF; 190 | cursor: pointer; 191 | display: inline-block; 192 | font-size: 14px; 193 | line-height: 20px; 194 | margin-bottom: 0; 195 | padding: 4px 12px; 196 | text-align: center; 197 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); 198 | vertical-align: middle; 199 | } 200 | a { 201 | color: #16A085; 202 | text-decoration: underline; 203 | transition: all 0.25s ease 0s; 204 | } 205 | a { 206 | color: #0088CC; 207 | text-decoration: none; 208 | } 209 | 210 | .similar{ 211 | padding-left: 24%; 212 | } 213 | 214 | .sidebar{ 215 | z-index:50; 216 | } 217 | 218 | .button_dislike{ 219 | } 220 | 221 | .button_like{ 222 | background-color: #15bd96; 223 | border-color: none; 224 | color: white; 225 | padding-top: 0.62rem; 226 | padding-bottom: 0.6875rem; 227 | padding-right: 0.6875rem; 228 | padding-left: 0.6875rem; 229 | font-size: 10px; 230 | text-align : center; 231 | position: relative; 232 | font-weight: bold; 233 | line-height: 1em; 234 | vertical-align: middle; 235 | zoom: 1; 236 | white-space: nowrap; 237 | -webkit-border-radius: 5px; 238 | -webkit-font-smoothing: antialiased; 239 | -webkit-transition: background-color 0.15s ease-in-out; 240 | transition: background-color 0.15s ease-in-out; 241 | width: 100%; 242 | background-color: #f56363; 243 | background-image: -webkit-gradient(top, #df5d5d, #ca5d5d); 244 | border: 1px solid #f56363; 245 | border-color: #bb4d4d #d25c5c #f56363 #df5d5d; 246 | } 247 | .button_like:visited{ 248 | cursor: pointer; 249 | } 250 | .button_dislike:hover{ 251 | background-color: #fff !important; 252 | opacity: 0.7; 253 | } 254 | 255 | 256 | img.logo_restore{ 257 | width: auto !important; 258 | height: auto !important; 259 | border : none; 260 | margin-top : 5px; 261 | } 262 | 263 | .override{ 264 | text-align:left; 265 | text-size: 40px; 266 | max-width: 700px; 267 | margin-left: 85px !important; 268 | padding-bottom: 10px !important; 269 | } -------------------------------------------------------------------------------- /public/innerpage/css/portfolio_styling.css: -------------------------------------------------------------------------------- 1 | .left-panel{ 2 | background-color: rgba(0, 0, 0, 0.05); 3 | min-width: 270px; 4 | } 5 | .crafterImg{ 6 | margin-top: 0; 7 | display: block; 8 | margin-left: auto; 9 | margin-right: auto; 10 | } 11 | .panel_container{ 12 | padding-right: 0.8em; 13 | } 14 | h3.special{ 15 | font-size: 250%; 16 | letter-spacing : -1px; 17 | line-height: 1.1; 18 | font-family: sans-serif; 19 | font-weight: 700; 20 | } 21 | .special{ 22 | text-align: center; 23 | } 24 | .crafter{ 25 | margin-bottom: 0; 26 | } 27 | .center-text{ 28 | text-align: center; 29 | } 30 | .justify-text{ 31 | text-align:justify; 32 | } 33 | .move-down{ 34 | padding-top: 20em; 35 | } 36 | .learn_more_btn{ 37 | margin-top: 30px; 38 | padding: 0.7em 1.2em; 39 | text-align: center; 40 | color: #fff; 41 | font-size: 13px; 42 | font-weight: bold; 43 | line-height: 1em; 44 | cursor: pointer; 45 | display: inline-block; 46 | vertical-align: middle; 47 | zoom: 1; 48 | white-space: nowrap; 49 | -webkit-border-radius: 5px; 50 | -webkit-font-smoothing: antialiased; 51 | -webkit-transition: background-color 0.15s ease-in-out; 52 | transition: background-color 0.15s ease-in-out; 53 | padding-top: 1.125rem; 54 | padding-bottom: 1.1875rem; 55 | padding-right: 1.1875rem; 56 | padding-left: 1.1875rem; 57 | width: 100%; 58 | background-color: #f56363; 59 | background-image: -webkit-gradient(top, #df5d5d, #ca5d5d); 60 | border: 1px solid #f56363; 61 | border-color: #bb4d4d #d25c5c #f56363 #df5d5d; 62 | } 63 | .button_like{ 64 | padding-top: 0.625rem; 65 | 
padding-bottom: 0.6875rem; 66 | 
padding-right: 1.25rem; 67 | 
padding-left: 1.25rem; 68 | 
font-size: 10px; 69 | 
background-color: #f56363; 70 | background-image: linear-gradient(top, #df5d5d, #ca5d5d); 71 | 
background-image: -webkit-gradient(linear, left top, left bottom, from(#df5d5d), to(#ca5d5d)); 72 | 
background-image: -webkit-linear-gradient(top, #df5d5d, #ca5d5d); 73 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff52691', endColorstr='#ffe1117d', GradientType=0); 74 | 
border: 1px solid #f56363; 75 | 
border-color: #bb4d4d #d25c5c #f56363 #df5d5d; 76 | 
padding: 0.7em 1.2em; 77 | 
position: relative; 78 | 
text-align: center; 79 | 
color: #fff; 80 | 
font-size: 13px; 81 | 
font-weight: bold; 82 | 
line-height: 1em; 83 | 
white-space: nowrap; 84 | 
border: none; 85 | 
cursor: pointer; 86 | display: -moz-inline-stack; 87 | 
display: inline-block; 88 | 
vertical-align: middle; 89 | 
zoom: 1; 90 | 
white-space: nowrap; 91 | 
-webkit-border-radius: 5px; 92 | -moz-border-radius: 5px; 93 | -ms-border-radius: 5px; 94 | -o-border-radius: 5px; 95 | 
border-radius: 5px; 96 | 
-webkit-font-smoothing: antialiased; 97 | 
-webkit-transition: background-color 0.15s ease-in-out; 98 | -moz-transition: background-color 0.15s ease-in-out; 99 | -o-transition: background-color 0.15s ease-in-out; 100 | 
transition: background-color 0.15s ease-in-out; 101 | 102 | } 103 | .button_dislike{ 104 | padding-top: 0.625rem; 105 | padding-bottom: 0.6875rem; 106 | padding-right: 1.25rem; 107 | padding-left: 1.25rem; 108 | font-size: 10px; 109 | background-color: #f56363; 110 | background-image: linear-gradient(top, #df5d5d, #ca5d5d); 111 | background-image: -webkit-gradient(linear, left top, left bottom, from(#df5d5d), to(#ca5d5d)); 112 | background-image: -webkit-linear-gradient(top, #df5d5d, #ca5d5d); 113 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff52691', endColorstr='#ffe1117d', GradientType=0); 114 | border: 1px solid #f56363; 115 | border-color: #bb4d4d #d25c5c #f56363 #df5d5d; 116 | padding: 0.7em 1.2em; 117 | position: relative; 118 | text-align: center; 119 | color: #fff; 120 | font-size: 13px; 121 | font-weight: bold; 122 | line-height: 1em; 123 | white-space: nowrap; 124 | border: none; 125 | cursor: pointer; 126 | display: -moz-inline-stack; 127 | display: inline-block; 128 | vertical-align: middle; 129 | zoom: 1; 130 | white-space: nowrap; 131 | -webkit-border-radius: 5px; 132 | -moz-border-radius: 5px; 133 | -ms-border-radius: 5px; 134 | -o-border-radius: 5px; 135 | border-radius: 5px; 136 | -webkit-font-smoothing: antialiased; 137 | -webkit-transition: background-color 0.15s ease-in-out; 138 | -moz-transition: background-color 0.15s ease-in-out; 139 | -o-transition: background-color 0.15s ease-in-out; 140 | transition: background-color 0.15s ease-in-out; 141 | } 142 | .learn_more_btn:hover{ 143 | opacity: 0.9; 144 | color: white; 145 | text-decoration: none; 146 | } 147 | 148 | .move-up{ 149 | display: block; 150 | position: relative; 151 | float:right; 152 | margin-right: 10px; 153 | margin-top: -70px; 154 | } 155 | .name-styling{ 156 | padding-bottom: 20px; 157 | } 158 | .inline{ 159 | float:right; 160 | margin-top: -100px; 161 | margin-right: 50px; 162 | display:inline !important; 163 | z-index: 3000 164 | } 165 | .shift-down{ 166 | margin-top: 20px; 167 | } 168 | .button-restyle{ 169 | padding-left: 0.5em !important; 170 | padding-right: 0.5em !important; 171 | } 172 | 173 | img.button-resize{ 174 | width: auto !important; 175 | height: auto !important; 176 | border: none !important; 177 | } 178 | img.logo_restore{ 179 | width: auto !important; 180 | height: auto !important; 181 | border : none; 182 | margin-top : 5px; 183 | } 184 | .inline_img{ 185 | display:inline; 186 | overflow: hidden; 187 | } 188 | .product-details{ 189 | font-size: 2.125em; 190 | line-height: 32px; 191 | font-family: 'Open Sans Condensed'; 192 | font-style: normal; 193 | font-weight: 300; 194 | color: #555; 195 | } 196 | .push-top{ 197 | margin-top: 1em; 198 | } 199 | .color-grey{ 200 | color: #888 !important; 201 | } 202 | .color-black{ 203 | color: #555; 204 | } 205 | .container_price{ 206 | margin-left: 10px; 207 | } 208 | .black-color{ 209 | font-size: 1.125; 210 | line-height: 21px; 211 | font-style: normal; 212 | text-rendering: optimizeLegibility; 213 | 214 | } 215 | .price-styling{ 216 | font-size: x-large !important; 217 | font-color: #666 !important; 218 | } 219 | .bold{ 220 | font-weight:bold; 221 | } 222 | .right{ 223 | margin-left: 743px; 224 | } 225 | .desc-para-styling{ 226 | color: #555; 227 | font-size: 1em; 228 | line-height: 1.6em; 229 | text-align: justify; 230 | text-justify:inter-word; 231 | 232 | } 233 | .item-description{ 234 | width: 740px; 235 | } 236 | .desc-styling{ 237 | color : #555; 238 | } 239 | .move-downs{ 240 | padding-top:40px; 241 | } 242 | .push-right{ 243 | float:right; 244 | margin-right: 10px 245 | } 246 | .push-left{ 247 | float:left; 248 | margin 249 | } 250 | .border-on{ 251 | border:1px solid #EEE; 252 | padding-top: 10px; 253 | min-height: 613px; 254 | } 255 | .separate-img{ 256 | margin-top: 13px; 257 | } -------------------------------------------------------------------------------- /public/contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 70 | 71 |
72 |
73 |
Contact Us
74 |

MUKA

901 Mission Street
75 | Suite 105
76 | San Francisco, CA 94103
77 | (415) 624-5881 78 |

79 | 80 | 81 |
82 |
83 |
84 | 85 |
86 | 87 |
88 | 89 |
90 | 91 | 92 |
93 | 94 | 95 |
96 | 97 |
98 | 99 |
100 |
101 |
102 |
103 |

Team Muka Dev Team:

104 | 105 |

Deep Datta - Developer

106 | Stephen Grider - Developer

107 | Andrea Alongi - Designer

108 | Stewart Huang - Designer

109 |

110 |
111 | 112 |
113 |
114 | 115 |
116 | 117 | 118 |
119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 152 | 153 | 154 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | -------------------------------------------------------------------------------- /public/css/landing-page.css: -------------------------------------------------------------------------------- 1 | body, html { 2 | height: 100%; 3 | width: 100%; 4 | } 5 | 6 | body, h1, h2, h3, h4, h5, h6 { 7 | font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; 8 | font-weight: 700; 9 | } 10 | 11 | .navbar div.container div.collapse ul.nav li { 12 | margin-top:5px; 13 | } 14 | 15 | .intro-header div.container div.row div.col-lg-12 div.intro-message h3 { 16 | text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6); 17 | font-size:33px; 18 | } 19 | 20 | img:hover { 21 | opacity:0.8; 22 | } 23 | 24 | .content-section-a div.container div.row div.col-lg-5 form#myform div.syco_tooltip { 25 | background: none repeat scroll 0 0 #1ABC9C!important; 26 | } 27 | 28 | .lead { 29 | font-size: 18px; 30 | font-weight: 400; 31 | } 32 | 33 | .intro-header { 34 | padding-top: 50px; /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */ 35 | padding-bottom: 50px; 36 | color: #f8f8f8; 37 | background: url(../img/intro-bg.jpg) no-repeat center center; 38 | background-size: cover; 39 | text-align: center; 40 | } 41 | 42 | .intro-message { 43 | position: relative; 44 | padding-top: 20%; 45 | padding-bottom: 20%; 46 | } 47 | 48 | .intro-message > h1 { 49 | margin: 0; 50 | font-size: 5em; 51 | text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6); 52 | } 53 | 54 | .intro-divider { 55 | width: 400px; 56 | border-top: 1px solid #f8f8f8; 57 | border-bottom: 1px solid rgba(0, 0, 0, 0.2); 58 | } 59 | 60 | .intro-message > h3 { 61 | text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6); 62 | } 63 | 64 | @media (max-width: 767px) { 65 | .intro-message { 66 | padding-bottom: 15%; 67 | } 68 | 69 | .intro-message > h1 { 70 | font-size: 3em; 71 | } 72 | 73 | ul.intro-social-buttons > li { 74 | display: block; 75 | margin-bottom: 20px; 76 | padding: 0; 77 | } 78 | 79 | ul.intro-social-buttons > li:last-child { 80 | margin-bottom: 0; 81 | } 82 | 83 | .intro-divider { 84 | width: 100%; 85 | } 86 | } 87 | 88 | .network-name { 89 | text-transform: uppercase; 90 | font-size: 14px; 91 | font-weight: 400; 92 | letter-spacing: 2px; 93 | } 94 | 95 | .content-section-a { 96 | background-color: #f8f8f8; 97 | padding: 50px 0; 98 | } 99 | 100 | .content-section-b { 101 | border-top: 1px solid #e7e7e7; 102 | border-bottom: 1px solid #e7e7e7; 103 | padding: 50px 0; 104 | } 105 | 106 | .section-heading { 107 | margin-bottom: 30px; 108 | } 109 | 110 | .section-heading-spacer { 111 | border-top: 3px solid #e7e7e7; 112 | width: 200px; 113 | float: left; 114 | } 115 | 116 | .banner { 117 | padding: 100px 0; 118 | color: #f8f8f8; 119 | background: url(../img/banner-bg.jpg) no-repeat center center; 120 | background-size: cover; 121 | } 122 | 123 | .banner h2 { 124 | margin: 0; 125 | text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6); 126 | font-size: 3em; 127 | } 128 | 129 | .banner ul { 130 | margin-bottom: 0; 131 | } 132 | 133 | .banner-social-buttons { 134 | float: right; 135 | margin-top: 0; 136 | } 137 | 138 | @media (max-width: 1199px) { 139 | ul.banner-social-buttons { 140 | float: left; 141 | margin-top: 15px; 142 | } 143 | } 144 | 145 | @media (max-width: 767px) { 146 | .banner h2 { 147 | margin: 0; 148 | text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6); 149 | font-size: 3em; 150 | } 151 | 152 | ul.banner-social-buttons > li { 153 | display: block; 154 | margin-bottom: 20px; 155 | padding: 0; 156 | } 157 | 158 | ul.banner-social-buttons > li:last-child { 159 | margin-bottom: 0; 160 | } 161 | } 162 | 163 | footer { 164 | background-color: #f8f8f8; 165 | padding: 50px 0; 166 | } 167 | 168 | p.copyright { 169 | margin: 15px 0 0; 170 | } 171 | 172 | #picturebox { 173 | width: 1200px; 174 | position: relative; 175 | left : 50%; 176 | margin-left: -600px; 177 | } 178 | 179 | .headshotbox { 180 | display:block; 181 | float:left; 182 | position:relative; 183 | margin-left:20px; 184 | margin-right:20px; 185 | } 186 | 187 | .pictext { 188 | color:#333; 189 | } 190 | 191 | h7 { 192 | font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif; 193 | color:#555; 194 | font-weight: 700; 195 | font-size:38px; 196 | margin-top:20px; 197 | } 198 | 199 | #myform input[type="text"], #myform textarea { 200 | background: none repeat scroll 0 0 #CCC; 201 | border: 2px solid #6EA5E1; 202 | border-radius: 6px; 203 | box-shadow: none; 204 | color: #FFFFFF; 205 | font-family: "Lato",sans-serif; 206 | font-size: 14px; 207 | height: 36px; 208 | padding: 9px 5px; 209 | text-indent: 6px; 210 | transition: border 0.25s linear 0s, color 0.25s linear 0s; 211 | width: 100%; 212 | } 213 | 214 | /* ----------------Custom Buttons----------------- */ 215 | 216 | .btn.btn-primary { 217 | background-color: #1ABC9C; 218 | } 219 | .btn.btn-large { 220 | font-size: 16.996px; 221 | line-height: 20px; 222 | padding: 12px 18px 13px; 223 | } 224 | .btn:first-child { 225 | } 226 | .btn { 227 | background: none repeat scroll 0 0 #BDC3C7; 228 | border: medium none; 229 | border-radius: 6px; 230 | box-shadow: none; 231 | color: #FFFFFF!important; 232 | line-height: 22px; 233 | padding: 9px 12px 10px; 234 | text-decoration: none; 235 | text-shadow: none; 236 | transition: all 0.25s ease 0s; 237 | } 238 | 239 | .btn, .btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover { 240 | font-size: 14.994px; 241 | font-weight: 500; 242 | } 243 | 244 | .btn:hover { 245 | background-color: #111; 246 | background-image: linear-gradient(to bottom, #3F3F3F, #222222); 247 | border:1px solid #FFF; 248 | } 249 | 250 | .btn-primary { 251 | background-color: #1ABC9C; 252 | 253 | background-repeat: repeat-x; 254 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); 255 | color: #FFFFFF; 256 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); 257 | } 258 | .btn-block { 259 | -moz-box-sizing: border-box; 260 | display: block; 261 | padding-left: 0; 262 | padding-right: 0; 263 | width: 100%; 264 | } 265 | .btn-large { 266 | border-radius: 6px; 267 | font-size: 17.5px; 268 | padding: 11px 19px; 269 | } 270 | .btn { 271 | -moz-border-bottom-colors: none; 272 | -moz-border-left-colors: none; 273 | -moz-border-right-colors: none; 274 | -moz-border-top-colors: none; 275 | background-color: #1ABC9C; 276 | background-image: linear-gradient(to bottom, #1ABC9C, #009979); 277 | background-repeat: repeat-x; 278 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #B3B3B3; 279 | border-image: none; 280 | border-radius: 4px; 281 | border-style: solid; 282 | border-width: 1px; 283 | box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); 284 | color: #FFFFFF; 285 | cursor: pointer; 286 | display: inline-block; 287 | font-size: 14px; 288 | line-height: 20px; 289 | margin-bottom: 0; 290 | padding: 4px 12px; 291 | text-align: center; 292 | vertical-align: middle; 293 | } 294 | a { 295 | color: #16A085; 296 | text-decoration: underline; 297 | transition: all 0.25s ease 0s; 298 | } 299 | a { 300 | color: #0088CC; 301 | text-decoration: none; 302 | } -------------------------------------------------------------------------------- /public/innerpage/js/animatescroll.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @build : 20-07-2013 3 | * @author : Ram swaroop 4 | * @site : Compzets.com 5 | */ 6 | (function($){ 7 | 8 | // defines various easing effects 9 | $.easing['jswing'] = $.easing['swing']; 10 | $.extend( $.easing, 11 | { 12 | def: 'easeOutQuad', 13 | swing: function (x, t, b, c, d) { 14 | return $.easing[$.easing.def](x, t, b, c, d); 15 | }, 16 | easeInQuad: function (x, t, b, c, d) { 17 | return c*(t/=d)*t + b; 18 | }, 19 | easeOutQuad: function (x, t, b, c, d) { 20 | return -c *(t/=d)*(t-2) + b; 21 | }, 22 | easeInOutQuad: function (x, t, b, c, d) { 23 | if ((t/=d/2) < 1) return c/2*t*t + b; 24 | return -c/2 * ((--t)*(t-2) - 1) + b; 25 | }, 26 | easeInCubic: function (x, t, b, c, d) { 27 | return c*(t/=d)*t*t + b; 28 | }, 29 | easeOutCubic: function (x, t, b, c, d) { 30 | return c*((t=t/d-1)*t*t + 1) + b; 31 | }, 32 | easeInOutCubic: function (x, t, b, c, d) { 33 | if ((t/=d/2) < 1) return c/2*t*t*t + b; 34 | return c/2*((t-=2)*t*t + 2) + b; 35 | }, 36 | easeInQuart: function (x, t, b, c, d) { 37 | return c*(t/=d)*t*t*t + b; 38 | }, 39 | easeOutQuart: function (x, t, b, c, d) { 40 | return -c * ((t=t/d-1)*t*t*t - 1) + b; 41 | }, 42 | easeInOutQuart: function (x, t, b, c, d) { 43 | if ((t/=d/2) < 1) return c/2*t*t*t*t + b; 44 | return -c/2 * ((t-=2)*t*t*t - 2) + b; 45 | }, 46 | easeInQuint: function (x, t, b, c, d) { 47 | return c*(t/=d)*t*t*t*t + b; 48 | }, 49 | easeOutQuint: function (x, t, b, c, d) { 50 | return c*((t=t/d-1)*t*t*t*t + 1) + b; 51 | }, 52 | easeInOutQuint: function (x, t, b, c, d) { 53 | if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; 54 | return c/2*((t-=2)*t*t*t*t + 2) + b; 55 | }, 56 | easeInSine: function (x, t, b, c, d) { 57 | return -c * Math.cos(t/d * (Math.PI/2)) + c + b; 58 | }, 59 | easeOutSine: function (x, t, b, c, d) { 60 | return c * Math.sin(t/d * (Math.PI/2)) + b; 61 | }, 62 | easeInOutSine: function (x, t, b, c, d) { 63 | return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b; 64 | }, 65 | easeInExpo: function (x, t, b, c, d) { 66 | return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b; 67 | }, 68 | easeOutExpo: function (x, t, b, c, d) { 69 | return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b; 70 | }, 71 | easeInOutExpo: function (x, t, b, c, d) { 72 | if (t==0) return b; 73 | if (t==d) return b+c; 74 | if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b; 75 | return c/2 * (-Math.pow(2, -10 * --t) + 2) + b; 76 | }, 77 | easeInCirc: function (x, t, b, c, d) { 78 | return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b; 79 | }, 80 | easeOutCirc: function (x, t, b, c, d) { 81 | return c * Math.sqrt(1 - (t=t/d-1)*t) + b; 82 | }, 83 | easeInOutCirc: function (x, t, b, c, d) { 84 | if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b; 85 | return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b; 86 | }, 87 | easeInElastic: function (x, t, b, c, d) { 88 | var s=1.70158;var p=0;var a=c; 89 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; 90 | if (a < Math.abs(c)) { a=c; var s=p/4; } 91 | else var s = p/(2*Math.PI) * Math.asin (c/a); 92 | return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; 93 | }, 94 | easeOutElastic: function (x, t, b, c, d) { 95 | var s=1.70158;var p=0;var a=c; 96 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; 97 | if (a < Math.abs(c)) { a=c; var s=p/4; } 98 | else var s = p/(2*Math.PI) * Math.asin (c/a); 99 | return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b; 100 | }, 101 | easeInOutElastic: function (x, t, b, c, d) { 102 | var s=1.70158;var p=0;var a=c; 103 | if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5); 104 | if (a < Math.abs(c)) { a=c; var s=p/4; } 105 | else var s = p/(2*Math.PI) * Math.asin (c/a); 106 | if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; 107 | return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b; 108 | }, 109 | easeInBack: function (x, t, b, c, d, s) { 110 | if (s == undefined) s = 1.70158; 111 | return c*(t/=d)*t*((s+1)*t - s) + b; 112 | }, 113 | easeOutBack: function (x, t, b, c, d, s) { 114 | if (s == undefined) s = 1.70158; 115 | return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; 116 | }, 117 | easeInOutBack: function (x, t, b, c, d, s) { 118 | if (s == undefined) s = 1.70158; 119 | if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 120 | return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 121 | }, 122 | easeInBounce: function (x, t, b, c, d) { 123 | return c - $.easing.easeOutBounce (x, d-t, 0, c, d) + b; 124 | }, 125 | easeOutBounce: function (x, t, b, c, d) { 126 | if ((t/=d) < (1/2.75)) { 127 | return c*(7.5625*t*t) + b; 128 | } else if (t < (2/2.75)) { 129 | return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; 130 | } else if (t < (2.5/2.75)) { 131 | return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; 132 | } else { 133 | return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; 134 | } 135 | }, 136 | easeInOutBounce: function (x, t, b, c, d) { 137 | if (t < d/2) return $.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b; 138 | return $.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b; 139 | } 140 | }); 141 | 142 | $.fn.animatescroll = function(options) { 143 | 144 | // fetches options 145 | var opts = $.extend({},$.fn.animatescroll.defaults,options); 146 | 147 | if(opts.element == "html,body") { 148 | // Get the distance of particular id or class from top 149 | var offset = this.offset().top; 150 | 151 | // Scroll the page to the desired position 152 | $(opts.element).stop().animate({ scrollTop: offset - opts.padding}, opts.scrollSpeed, opts.easing); 153 | } 154 | else { 155 | // Scroll the element to the desired position 156 | $(opts.element).stop().animate({ scrollTop: this.offset().top - this.parent().offset().top + this.parent().scrollTop() - opts.padding}, opts.scrollSpeed, opts.easing); 157 | } 158 | }; 159 | 160 | // default options 161 | $.fn.animatescroll.defaults = { 162 | easing:"swing", 163 | scrollSpeed:800, 164 | padding:0, 165 | element:"html,body" 166 | }; 167 | 168 | }(jQuery)); -------------------------------------------------------------------------------- /public/innerpage/ratings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka Products 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 49 | 50 |
51 | 52 |
53 | 54 |
55 |

Muka 56 | Business for a bigger world 57 |

58 |
59 | 60 |
61 | 62 |
63 | 64 |
65 | 66 | 67 | 68 |

Red Rocket 69 |

70 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

71 | 72 |
73 | 74 |
75 | 76 | 77 | 78 |

Bee Sting 79 |

80 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

81 |
82 | 83 |
84 | 85 | 86 | 87 |

White Eagle 88 |

89 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

90 |
91 | 92 |
93 | 94 |
95 | 96 |
97 | 98 | 99 | 100 |

Black Bandit 101 |

102 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

103 |
104 | 105 |
106 | 107 | 108 | 109 |

Super Cool 110 |

111 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

112 |
113 | 114 |
115 | 116 | 117 | 118 |

Kick Rocks 119 |

120 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

121 |
122 | 123 |
124 | 125 |
126 | 127 |
128 | 129 | 130 | 131 |

Pink Chill 132 |

133 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

134 |
135 | 136 |
137 | 138 | 139 | 140 |

King Air 141 |

142 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

143 |
144 | 145 |
146 | 147 | 148 | 149 |

Jedi Master 150 |

151 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

152 |
153 | 154 |
155 | 156 |
157 | 158 |
159 | 160 |
161 |
    162 |
  • « 163 |
  • 164 |
  • 1 165 |
  • 166 |
  • 2 167 |
  • 168 |
  • 3 169 |
  • 170 |
  • 4 171 |
  • 172 |
  • 5 173 |
  • 174 |
  • » 175 |
  • 176 |
177 |
178 | 179 |
180 | 181 |
182 | 183 | 184 |
185 | 186 |
187 | 188 | 195 | 196 |
197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /public/innerpage/products.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 51 | 52 |
53 | 54 |
55 | 56 |
57 |

Muka 58 | Better Business for a Better World 59 |

60 |
61 | 62 |
63 | 64 |
65 | 66 |
67 | 68 | 69 | 70 |

Chairs 71 |

72 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

73 | 74 |
75 | 76 |
77 | 78 | 79 | 80 |

Home Decor 81 |

82 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

83 |
84 | 85 |
86 | 87 | 88 | 89 |

Textile 90 |

91 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

92 |
93 | 94 |
95 | 96 |
97 | 98 |
99 | 100 | 101 | 102 |

Tables 103 |

104 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

105 |
106 | 107 |
108 | 109 | 110 | 111 |

Lounging 112 |

113 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

114 |
115 | 116 |
117 | 118 | 119 | 120 |

Lamps 121 |

122 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

123 |
124 | 125 |
126 | 127 |
128 | 129 |
130 | 131 | 132 | 133 |

Day Beds 134 |

135 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

136 |
137 | 138 |
139 | 140 | 141 | 142 |

Beach Chairs 143 |

144 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

145 |
146 | 147 |
148 | 149 | 150 | 151 |

Accessories 152 |

153 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.

154 |
155 | 156 |
157 | 158 |
159 | 160 |
161 | 162 |
163 |
    164 | 165 |
  • « 166 | 167 |
  • « 168 | 169 |
  • 170 |
  • 1 171 |
  • 172 |
  • 2 173 |
  • 174 |
  • 3 175 |
  • 176 |
  • 4 177 |
  • 178 |
  • 5 179 |
  • 180 |
  • » 181 |
  • 182 |
183 |
184 | 185 |
186 | 187 |
188 | 189 | 190 |
191 | 192 |
193 | 194 | 201 | 202 |
203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | -------------------------------------------------------------------------------- /public/innerpage/pick.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Muka | Aboriginals Handmade Crafts 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 46 | 47 | 56 | 57 |
58 | 136 | 137 | 138 | 139 | 140 | 141 |
142 |
143 | 144 |
145 | Price : 146 | 147 |

148 |
149 |
150 |
151 | 152 |
153 |

154 |

155 | 156 |
157 | 158 |
159 |
160 |
161 | 162 |
163 | 172 |
173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 55 | 56 |
57 | 58 |
59 | 60 |
61 |
62 |
63 |

Better Business For a Better World

64 |

Buy products directly from those who make them

65 |
66 | 72 |
73 |
74 |
75 | 76 |
77 | 78 | 79 |
80 | 81 | 82 |
83 | 84 |
85 | 86 |
87 |
88 |
89 |
90 |

Vote For Your Favorite Products:

91 |
92 |

If a product reaches 100 we push it into full production so we can provide them to you in bulk!

You can also buy individual items, but they might be a little more expensive!

93 |
94 |
95 |

Featured Products

96 |
97 |
98 | 99 |
100 | 101 | 102 |
103 | 104 | 105 |
106 | 107 |
108 | 109 |
110 |
111 |
112 |
113 |

Unveiling Talents. Discovering Possibilities. 114 | Enriching Lives

115 |

MUKA’s main purpose is to bridge the gap between skilled indigenous communities of the Philippines and the global market.

116 |
117 |
118 | 119 |
120 |
121 | 122 |
123 | 124 | 125 |
126 | 127 | 128 |
129 | 130 |
131 | 132 |
133 |
134 |
135 |
136 |

Shopping with a Purpose

137 |

For every purchase made, you give an opportunity for a sustainable livelihood. MUKA works by being the stepping-stone needed by the indigenous communities.

We extend ourselves to impart them with the knowledge, tools and connections necessary to achieve the long-term goal of establishing themselves an an independent enterprise.


138 |
139 | 145 |
146 |
147 |
148 | 149 |
150 |
151 | 152 |
153 | 154 | 155 |
156 | 157 | 158 | 182 | 183 | 184 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | -------------------------------------------------------------------------------- /public/innerpage/js/matrixUtil.js: -------------------------------------------------------------------------------- 1 | 2 | var MatrixUtil = function(constructorMatrix){ 3 | this._matrix = constructorMatrix; 4 | }; 5 | 6 | MatrixUtil.prototype._each = function(func){ 7 | for(var i = 0; i < this._matrix.length; i++){ 8 | for(var j = 0; j < this._matrix[0].length; j++){ 9 | func(i,j); 10 | } 11 | } 12 | }; 13 | 14 | MatrixUtil.prototype.numColumns = function(){ 15 | if(!this._matrix) return null; 16 | return this._matrix[0].length; 17 | }; 18 | 19 | MatrixUtil.prototype.numRows = function(){ 20 | if(!this._matrix) return null; 21 | return this._matrix.length; 22 | }; 23 | 24 | MatrixUtil.prototype.getMatrix = function(){ 25 | return this._matrix; 26 | }; 27 | 28 | MatrixUtil.prototype.setMatrix = function(newMatrix){ 29 | this._matrix = newMatrix; 30 | return this; 31 | }; 32 | 33 | MatrixUtil.prototype.checkSquare = function(){ 34 | if(this.numColumns() === this.numRows()){ 35 | return true; 36 | } 37 | return false; 38 | } 39 | 40 | MatrixUtil.prototype.add = function(addMatrixObj){ 41 | var addMatrix = addMatrixObj.getMatrix(); 42 | if(this.numColumns() != addMatrixObj.numColumns() 43 | || this.numRows() != addMatrixObj.numRows() ){ 44 | throw 'Matrices must be of equal dimensions to add'; 45 | } 46 | 47 | this._each(function(row,column){ 48 | this._matrix[row][column] += addMatrix[row][column]; 49 | }.bind(this)); 50 | return this; 51 | }; 52 | 53 | MatrixUtil.prototype.subtract = function(addMatrixObj){ 54 | var subtractMatrix = addMatrixObj.getMatrix(); 55 | if(this.numColumns() != addMatrixObj.numColumns() 56 | || this.numRows() != addMatrixObj.numRows() ){ 57 | throw 'Matrices must be of equal dimensions to add'; 58 | } 59 | this._each(function(row,column){ 60 | this._matrix[row][column] -= subtractMatrix[row][column]; 61 | }.bind(this)); 62 | return this; 63 | }; 64 | 65 | MatrixUtil.prototype.multiply = function(aMatrix){ 66 | var m2 = aMatrix.getMatrix(); 67 | var m1 = this._matrix; 68 | 69 | var result = []; 70 | for (var i = 0; i < m1.length; i++) { 71 | result[i] = []; 72 | for (var j = 0; j < m2[0].length; j++) { 73 | var sum = 0; 74 | for (var k = 0; k < m1[0].length; k++) { 75 | sum += m1[i][k] * m2[k][j]; 76 | } 77 | result[i][j] = sum; 78 | } 79 | } 80 | this._matrix = result; 81 | return this; 82 | }; 83 | 84 | MatrixUtil.prototype.scalarMultiply = function(scalar){ 85 | if(typeof scalar != 'number') throw 'Scalar must be a number'; 86 | this._each(function(row,column){ 87 | this._matrix[row][column] *= scalar; 88 | }.bind(this)); 89 | return this; 90 | }; 91 | 92 | MatrixUtil.prototype.transpose = function(){ 93 | var transposedMatrix = []; 94 | 95 | for(var i = 0; i < this.numColumns(); i++){ 96 | transposedMatrix.push([]); 97 | } 98 | this._each(function(row,column){ 99 | transposedMatrix[column][row] = this._matrix[row][column] 100 | }.bind(this)); 101 | this._matrix = transposedMatrix; 102 | return this; 103 | }; 104 | 105 | MatrixUtil.prototype.determinant = function(){ 106 | var s; 107 | var det = 0; 108 | var k = this.numColumns(); 109 | if(k != this.numRows()){ 110 | throw 'Matrices must be of equal dimensions to multiply'; 111 | } 112 | var calcDet = function(A){ 113 | if (A.length == 1) { 114 | return A[0][0]; 115 | } 116 | if (A.length == 2) { 117 | det = A[0][0] * A[1][1] - A[1][0] * A [0][1]; 118 | return det; 119 | } 120 | for (var i = 0; i < k; i++) { 121 | var smaller = new Array(A.length - 1); 122 | for (var h = 0; h < smaller.length; h++) { 123 | smaller[h] = new Array(A.length - 1); 124 | } 125 | for(var a = 1; a < A.length; a++) { 126 | for(var b = 0; b < A.length; b++) { 127 | if (b < i) { 128 | smaller[a - 1][b] = A[a][b]; 129 | } else if (b > i) { 130 | smaller[a - 1][b - 1] = A[a][b]; 131 | } 132 | } 133 | } 134 | if(i % 2 == 0) {s = 1;} 135 | else {s = -1;} 136 | det += s * A[0][i] * (calcDet(smaller)); 137 | } 138 | return det 139 | } 140 | return calcDet(this._matrix); 141 | }; 142 | 143 | MatrixUtil.prototype.trace = function(){ 144 | if(!this.checkSquare()){ 145 | throw "Matrix must be square"; 146 | } 147 | var trace = 0; 148 | this._each(function(row,col){ 149 | if(row === col){ trace += this._matrix[row][col];} 150 | }.bind(this)); 151 | return trace; 152 | }; 153 | 154 | MatrixUtil.prototype._makeIdentity = function(m){ 155 | var matrix = []; 156 | for(var i = 0; i < m ; i++){ 157 | matrix.push([]); 158 | for(var j = 0; j < m ; j++){ 159 | if(i===j){ 160 | matrix[i].push(1); 161 | } else{ 162 | matrix[i].push(0); 163 | } 164 | } 165 | } 166 | return matrix; 167 | }; 168 | 169 | MatrixUtil.prototype._RREF = function(matrix){ 170 | var lead = 0; 171 | var rowCount = matrix.length; 172 | var colCount = matrix[0].length; 173 | for(var r = 0; r < rowCount; r++){ 174 | if(colCount < lead){ 175 | return matrix; 176 | } 177 | var i = r; 178 | while(matrix[i][lead] == 0){ 179 | i++; 180 | if(rowCount == i){ 181 | i=r; 182 | lead++ 183 | if(colCount === lead){ 184 | return matrix; 185 | } 186 | } 187 | } 188 | matrix[i] = [matrix[r], matrix[r] = matrix[i]][0]; //bwhahahha 189 | var val = matrix[r][lead]; 190 | for(var j = 0; j < colCount; j++){ 191 | matrix[r][j] = matrix[r][j] / val; 192 | } 193 | for(var i = 0 ; i < rowCount; i++){ 194 | if(i != r){ 195 | var val = matrix[i][lead]; 196 | for(var t = 0; t < colCount ; t++){ 197 | matrix[i][t] -= val * matrix[r][t]; 198 | } 199 | } 200 | } 201 | lead++; 202 | } 203 | return matrix 204 | }; 205 | 206 | MatrixUtil.prototype.inverse = function(){ 207 | var m = this.numColumns() 208 | var identity = this._makeIdentity(m) 209 | var adjMatrix = this.getMatrix(); 210 | 211 | 212 | for(var i =0 ; i < m ; i++){ 213 | adjMatrix[i] = adjMatrix[i].concat(identity[i]); 214 | } 215 | 216 | var rRef = this._RREF(adjMatrix); 217 | var iMatrix = []; 218 | 219 | 220 | for(var i = 0; i < m; i++){ 221 | iMatrix.push([]); 222 | for(var j = 0; j < m ; j++){ 223 | iMatrix[i].push(rRef[i][j+m]); 224 | } 225 | } 226 | this._matrix = iMatrix; 227 | return this; 228 | }; 229 | 230 | MatrixUtil.prototype.rotateX = function(rad){ 231 | 232 | var rotation = new MatrixUtil([ 233 | [1,0,0,0], 234 | [0,Math.cos(rad),-1*Math.sin(rad),0], 235 | [0,Math.sin(rad),Math.cos(rad),0], 236 | [0,0,0,1] 237 | ]); 238 | this.multiply(rotation); 239 | return this; 240 | }; 241 | MatrixUtil.prototype.rotateY = function(rad){ 242 | 243 | var rotation = new MatrixUtil([ 244 | [Math.cos(rad),0,Math.sin(rad),0], 245 | [0,1,0,0], 246 | [-1*Math.sin(rad),0,Math.cos(rad),0], 247 | [0,0,0,1] 248 | ]); 249 | 250 | this.multiply(rotation); 251 | return this; 252 | 253 | }; 254 | MatrixUtil.prototype.rotateZ = function(rad){ 255 | var rotation = new MatrixUtil([ 256 | [Math.cos(rad),-1*Math.sin(rad),0,0], 257 | [Math.sin(rad),Math.cos(rad),0,0], 258 | [0,0,1,0], 259 | [0,0,0,1] 260 | ]); 261 | 262 | this.multiply(rotation); 263 | return this; 264 | }; 265 | 266 | MatrixUtil.prototype.translateX = function(x){ 267 | // var translation = new MatrixUtil([ 268 | // [1,0,0,0], 269 | // [0,1,0,0], 270 | // [0,0,1,0], 271 | // [x,0,0,1] 272 | // ]); 273 | this._matrix[3][0] += x; 274 | // this.multiply(translation); 275 | return this; 276 | }; 277 | MatrixUtil.prototype.translateY = function(y){ 278 | // var translation = new MatrixUtil([ 279 | // [1,0,0,0], 280 | // [0,1,0,0], 281 | // [0,0,1,0], 282 | // [0,y,0,1] 283 | // ]); 284 | this._matrix[3][1] += y; 285 | // this.multiply(translation); 286 | return this; 287 | }; 288 | 289 | MatrixUtil.prototype.translateZ = function(z){ 290 | // var translation = new MatrixUtil([ 291 | // [1,0,0,0], 292 | // [0,1,0,0], 293 | // [0,0,1,0], 294 | // [0,0,z,1] 295 | // ]); 296 | this._matrix[3][2] += z; 297 | // this.multiply(translation); 298 | return this; 299 | }; 300 | 301 | 302 | MatrixUtil.prototype.copyMatrix = function(){ 303 | var copy = []; 304 | 305 | for(var i = 0; i < this.numRows(); i++){ 306 | copy.push([]); 307 | for(var j = 0; j < this.numColumns(); j++){ 308 | copy[i].push(this._matrix[i][j]); 309 | } 310 | } 311 | return copy; 312 | } 313 | 314 | MatrixUtil.prototype.toString = function(){ 315 | var s = "" 316 | this._each(function(row,column){ 317 | if(row===this._matrix[0].length-1 && column===this._matrix.length-1){ 318 | s+=this._matrix[row][column].toFixed(15); 319 | }else{ 320 | s+= this._matrix[row][column].toFixed(15) + ","; 321 | } 322 | }.bind(this)); 323 | return s 324 | } 325 | -------------------------------------------------------------------------------- /public/font-awesome/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | @fa-font-path: "../fonts"; 5 | //@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.0.3/fonts"; // for referencing Bootstrap CDN font files directly 6 | @fa-css-prefix: fa; 7 | @fa-version: "4.0.3"; 8 | @fa-border-color: #eee; 9 | @fa-inverse: #fff; 10 | @fa-li-width: (30em / 14); 11 | 12 | @fa-var-glass: "\f000"; 13 | @fa-var-music: "\f001"; 14 | @fa-var-search: "\f002"; 15 | @fa-var-envelope-o: "\f003"; 16 | @fa-var-heart: "\f004"; 17 | @fa-var-star: "\f005"; 18 | @fa-var-star-o: "\f006"; 19 | @fa-var-user: "\f007"; 20 | @fa-var-film: "\f008"; 21 | @fa-var-th-large: "\f009"; 22 | @fa-var-th: "\f00a"; 23 | @fa-var-th-list: "\f00b"; 24 | @fa-var-check: "\f00c"; 25 | @fa-var-times: "\f00d"; 26 | @fa-var-search-plus: "\f00e"; 27 | @fa-var-search-minus: "\f010"; 28 | @fa-var-power-off: "\f011"; 29 | @fa-var-signal: "\f012"; 30 | @fa-var-cog: "\f013"; 31 | @fa-var-trash-o: "\f014"; 32 | @fa-var-home: "\f015"; 33 | @fa-var-file-o: "\f016"; 34 | @fa-var-clock-o: "\f017"; 35 | @fa-var-road: "\f018"; 36 | @fa-var-download: "\f019"; 37 | @fa-var-arrow-circle-o-down: "\f01a"; 38 | @fa-var-arrow-circle-o-up: "\f01b"; 39 | @fa-var-inbox: "\f01c"; 40 | @fa-var-play-circle-o: "\f01d"; 41 | @fa-var-repeat: "\f01e"; 42 | @fa-var-refresh: "\f021"; 43 | @fa-var-list-alt: "\f022"; 44 | @fa-var-lock: "\f023"; 45 | @fa-var-flag: "\f024"; 46 | @fa-var-headphones: "\f025"; 47 | @fa-var-volume-off: "\f026"; 48 | @fa-var-volume-down: "\f027"; 49 | @fa-var-volume-up: "\f028"; 50 | @fa-var-qrcode: "\f029"; 51 | @fa-var-barcode: "\f02a"; 52 | @fa-var-tag: "\f02b"; 53 | @fa-var-tags: "\f02c"; 54 | @fa-var-book: "\f02d"; 55 | @fa-var-bookmark: "\f02e"; 56 | @fa-var-print: "\f02f"; 57 | @fa-var-camera: "\f030"; 58 | @fa-var-font: "\f031"; 59 | @fa-var-bold: "\f032"; 60 | @fa-var-italic: "\f033"; 61 | @fa-var-text-height: "\f034"; 62 | @fa-var-text-width: "\f035"; 63 | @fa-var-align-left: "\f036"; 64 | @fa-var-align-center: "\f037"; 65 | @fa-var-align-right: "\f038"; 66 | @fa-var-align-justify: "\f039"; 67 | @fa-var-list: "\f03a"; 68 | @fa-var-outdent: "\f03b"; 69 | @fa-var-indent: "\f03c"; 70 | @fa-var-video-camera: "\f03d"; 71 | @fa-var-picture-o: "\f03e"; 72 | @fa-var-pencil: "\f040"; 73 | @fa-var-map-marker: "\f041"; 74 | @fa-var-adjust: "\f042"; 75 | @fa-var-tint: "\f043"; 76 | @fa-var-pencil-square-o: "\f044"; 77 | @fa-var-share-square-o: "\f045"; 78 | @fa-var-check-square-o: "\f046"; 79 | @fa-var-arrows: "\f047"; 80 | @fa-var-step-backward: "\f048"; 81 | @fa-var-fast-backward: "\f049"; 82 | @fa-var-backward: "\f04a"; 83 | @fa-var-play: "\f04b"; 84 | @fa-var-pause: "\f04c"; 85 | @fa-var-stop: "\f04d"; 86 | @fa-var-forward: "\f04e"; 87 | @fa-var-fast-forward: "\f050"; 88 | @fa-var-step-forward: "\f051"; 89 | @fa-var-eject: "\f052"; 90 | @fa-var-chevron-left: "\f053"; 91 | @fa-var-chevron-right: "\f054"; 92 | @fa-var-plus-circle: "\f055"; 93 | @fa-var-minus-circle: "\f056"; 94 | @fa-var-times-circle: "\f057"; 95 | @fa-var-check-circle: "\f058"; 96 | @fa-var-question-circle: "\f059"; 97 | @fa-var-info-circle: "\f05a"; 98 | @fa-var-crosshairs: "\f05b"; 99 | @fa-var-times-circle-o: "\f05c"; 100 | @fa-var-check-circle-o: "\f05d"; 101 | @fa-var-ban: "\f05e"; 102 | @fa-var-arrow-left: "\f060"; 103 | @fa-var-arrow-right: "\f061"; 104 | @fa-var-arrow-up: "\f062"; 105 | @fa-var-arrow-down: "\f063"; 106 | @fa-var-share: "\f064"; 107 | @fa-var-expand: "\f065"; 108 | @fa-var-compress: "\f066"; 109 | @fa-var-plus: "\f067"; 110 | @fa-var-minus: "\f068"; 111 | @fa-var-asterisk: "\f069"; 112 | @fa-var-exclamation-circle: "\f06a"; 113 | @fa-var-gift: "\f06b"; 114 | @fa-var-leaf: "\f06c"; 115 | @fa-var-fire: "\f06d"; 116 | @fa-var-eye: "\f06e"; 117 | @fa-var-eye-slash: "\f070"; 118 | @fa-var-exclamation-triangle: "\f071"; 119 | @fa-var-plane: "\f072"; 120 | @fa-var-calendar: "\f073"; 121 | @fa-var-random: "\f074"; 122 | @fa-var-comment: "\f075"; 123 | @fa-var-magnet: "\f076"; 124 | @fa-var-chevron-up: "\f077"; 125 | @fa-var-chevron-down: "\f078"; 126 | @fa-var-retweet: "\f079"; 127 | @fa-var-shopping-cart: "\f07a"; 128 | @fa-var-folder: "\f07b"; 129 | @fa-var-folder-open: "\f07c"; 130 | @fa-var-arrows-v: "\f07d"; 131 | @fa-var-arrows-h: "\f07e"; 132 | @fa-var-bar-chart-o: "\f080"; 133 | @fa-var-twitter-square: "\f081"; 134 | @fa-var-facebook-square: "\f082"; 135 | @fa-var-camera-retro: "\f083"; 136 | @fa-var-key: "\f084"; 137 | @fa-var-cogs: "\f085"; 138 | @fa-var-comments: "\f086"; 139 | @fa-var-thumbs-o-up: "\f087"; 140 | @fa-var-thumbs-o-down: "\f088"; 141 | @fa-var-star-half: "\f089"; 142 | @fa-var-heart-o: "\f08a"; 143 | @fa-var-sign-out: "\f08b"; 144 | @fa-var-linkedin-square: "\f08c"; 145 | @fa-var-thumb-tack: "\f08d"; 146 | @fa-var-external-link: "\f08e"; 147 | @fa-var-sign-in: "\f090"; 148 | @fa-var-trophy: "\f091"; 149 | @fa-var-github-square: "\f092"; 150 | @fa-var-upload: "\f093"; 151 | @fa-var-lemon-o: "\f094"; 152 | @fa-var-phone: "\f095"; 153 | @fa-var-square-o: "\f096"; 154 | @fa-var-bookmark-o: "\f097"; 155 | @fa-var-phone-square: "\f098"; 156 | @fa-var-twitter: "\f099"; 157 | @fa-var-facebook: "\f09a"; 158 | @fa-var-github: "\f09b"; 159 | @fa-var-unlock: "\f09c"; 160 | @fa-var-credit-card: "\f09d"; 161 | @fa-var-rss: "\f09e"; 162 | @fa-var-hdd-o: "\f0a0"; 163 | @fa-var-bullhorn: "\f0a1"; 164 | @fa-var-bell: "\f0f3"; 165 | @fa-var-certificate: "\f0a3"; 166 | @fa-var-hand-o-right: "\f0a4"; 167 | @fa-var-hand-o-left: "\f0a5"; 168 | @fa-var-hand-o-up: "\f0a6"; 169 | @fa-var-hand-o-down: "\f0a7"; 170 | @fa-var-arrow-circle-left: "\f0a8"; 171 | @fa-var-arrow-circle-right: "\f0a9"; 172 | @fa-var-arrow-circle-up: "\f0aa"; 173 | @fa-var-arrow-circle-down: "\f0ab"; 174 | @fa-var-globe: "\f0ac"; 175 | @fa-var-wrench: "\f0ad"; 176 | @fa-var-tasks: "\f0ae"; 177 | @fa-var-filter: "\f0b0"; 178 | @fa-var-briefcase: "\f0b1"; 179 | @fa-var-arrows-alt: "\f0b2"; 180 | @fa-var-users: "\f0c0"; 181 | @fa-var-link: "\f0c1"; 182 | @fa-var-cloud: "\f0c2"; 183 | @fa-var-flask: "\f0c3"; 184 | @fa-var-scissors: "\f0c4"; 185 | @fa-var-files-o: "\f0c5"; 186 | @fa-var-paperclip: "\f0c6"; 187 | @fa-var-floppy-o: "\f0c7"; 188 | @fa-var-square: "\f0c8"; 189 | @fa-var-bars: "\f0c9"; 190 | @fa-var-list-ul: "\f0ca"; 191 | @fa-var-list-ol: "\f0cb"; 192 | @fa-var-strikethrough: "\f0cc"; 193 | @fa-var-underline: "\f0cd"; 194 | @fa-var-table: "\f0ce"; 195 | @fa-var-magic: "\f0d0"; 196 | @fa-var-truck: "\f0d1"; 197 | @fa-var-pinterest: "\f0d2"; 198 | @fa-var-pinterest-square: "\f0d3"; 199 | @fa-var-google-plus-square: "\f0d4"; 200 | @fa-var-google-plus: "\f0d5"; 201 | @fa-var-money: "\f0d6"; 202 | @fa-var-caret-down: "\f0d7"; 203 | @fa-var-caret-up: "\f0d8"; 204 | @fa-var-caret-left: "\f0d9"; 205 | @fa-var-caret-right: "\f0da"; 206 | @fa-var-columns: "\f0db"; 207 | @fa-var-sort: "\f0dc"; 208 | @fa-var-sort-asc: "\f0dd"; 209 | @fa-var-sort-desc: "\f0de"; 210 | @fa-var-envelope: "\f0e0"; 211 | @fa-var-linkedin: "\f0e1"; 212 | @fa-var-undo: "\f0e2"; 213 | @fa-var-gavel: "\f0e3"; 214 | @fa-var-tachometer: "\f0e4"; 215 | @fa-var-comment-o: "\f0e5"; 216 | @fa-var-comments-o: "\f0e6"; 217 | @fa-var-bolt: "\f0e7"; 218 | @fa-var-sitemap: "\f0e8"; 219 | @fa-var-umbrella: "\f0e9"; 220 | @fa-var-clipboard: "\f0ea"; 221 | @fa-var-lightbulb-o: "\f0eb"; 222 | @fa-var-exchange: "\f0ec"; 223 | @fa-var-cloud-download: "\f0ed"; 224 | @fa-var-cloud-upload: "\f0ee"; 225 | @fa-var-user-md: "\f0f0"; 226 | @fa-var-stethoscope: "\f0f1"; 227 | @fa-var-suitcase: "\f0f2"; 228 | @fa-var-bell-o: "\f0a2"; 229 | @fa-var-coffee: "\f0f4"; 230 | @fa-var-cutlery: "\f0f5"; 231 | @fa-var-file-text-o: "\f0f6"; 232 | @fa-var-building-o: "\f0f7"; 233 | @fa-var-hospital-o: "\f0f8"; 234 | @fa-var-ambulance: "\f0f9"; 235 | @fa-var-medkit: "\f0fa"; 236 | @fa-var-fighter-jet: "\f0fb"; 237 | @fa-var-beer: "\f0fc"; 238 | @fa-var-h-square: "\f0fd"; 239 | @fa-var-plus-square: "\f0fe"; 240 | @fa-var-angle-double-left: "\f100"; 241 | @fa-var-angle-double-right: "\f101"; 242 | @fa-var-angle-double-up: "\f102"; 243 | @fa-var-angle-double-down: "\f103"; 244 | @fa-var-angle-left: "\f104"; 245 | @fa-var-angle-right: "\f105"; 246 | @fa-var-angle-up: "\f106"; 247 | @fa-var-angle-down: "\f107"; 248 | @fa-var-desktop: "\f108"; 249 | @fa-var-laptop: "\f109"; 250 | @fa-var-tablet: "\f10a"; 251 | @fa-var-mobile: "\f10b"; 252 | @fa-var-circle-o: "\f10c"; 253 | @fa-var-quote-left: "\f10d"; 254 | @fa-var-quote-right: "\f10e"; 255 | @fa-var-spinner: "\f110"; 256 | @fa-var-circle: "\f111"; 257 | @fa-var-reply: "\f112"; 258 | @fa-var-github-alt: "\f113"; 259 | @fa-var-folder-o: "\f114"; 260 | @fa-var-folder-open-o: "\f115"; 261 | @fa-var-smile-o: "\f118"; 262 | @fa-var-frown-o: "\f119"; 263 | @fa-var-meh-o: "\f11a"; 264 | @fa-var-gamepad: "\f11b"; 265 | @fa-var-keyboard-o: "\f11c"; 266 | @fa-var-flag-o: "\f11d"; 267 | @fa-var-flag-checkered: "\f11e"; 268 | @fa-var-terminal: "\f120"; 269 | @fa-var-code: "\f121"; 270 | @fa-var-reply-all: "\f122"; 271 | @fa-var-mail-reply-all: "\f122"; 272 | @fa-var-star-half-o: "\f123"; 273 | @fa-var-location-arrow: "\f124"; 274 | @fa-var-crop: "\f125"; 275 | @fa-var-code-fork: "\f126"; 276 | @fa-var-chain-broken: "\f127"; 277 | @fa-var-question: "\f128"; 278 | @fa-var-info: "\f129"; 279 | @fa-var-exclamation: "\f12a"; 280 | @fa-var-superscript: "\f12b"; 281 | @fa-var-subscript: "\f12c"; 282 | @fa-var-eraser: "\f12d"; 283 | @fa-var-puzzle-piece: "\f12e"; 284 | @fa-var-microphone: "\f130"; 285 | @fa-var-microphone-slash: "\f131"; 286 | @fa-var-shield: "\f132"; 287 | @fa-var-calendar-o: "\f133"; 288 | @fa-var-fire-extinguisher: "\f134"; 289 | @fa-var-rocket: "\f135"; 290 | @fa-var-maxcdn: "\f136"; 291 | @fa-var-chevron-circle-left: "\f137"; 292 | @fa-var-chevron-circle-right: "\f138"; 293 | @fa-var-chevron-circle-up: "\f139"; 294 | @fa-var-chevron-circle-down: "\f13a"; 295 | @fa-var-html5: "\f13b"; 296 | @fa-var-css3: "\f13c"; 297 | @fa-var-anchor: "\f13d"; 298 | @fa-var-unlock-alt: "\f13e"; 299 | @fa-var-bullseye: "\f140"; 300 | @fa-var-ellipsis-h: "\f141"; 301 | @fa-var-ellipsis-v: "\f142"; 302 | @fa-var-rss-square: "\f143"; 303 | @fa-var-play-circle: "\f144"; 304 | @fa-var-ticket: "\f145"; 305 | @fa-var-minus-square: "\f146"; 306 | @fa-var-minus-square-o: "\f147"; 307 | @fa-var-level-up: "\f148"; 308 | @fa-var-level-down: "\f149"; 309 | @fa-var-check-square: "\f14a"; 310 | @fa-var-pencil-square: "\f14b"; 311 | @fa-var-external-link-square: "\f14c"; 312 | @fa-var-share-square: "\f14d"; 313 | @fa-var-compass: "\f14e"; 314 | @fa-var-caret-square-o-down: "\f150"; 315 | @fa-var-caret-square-o-up: "\f151"; 316 | @fa-var-caret-square-o-right: "\f152"; 317 | @fa-var-eur: "\f153"; 318 | @fa-var-gbp: "\f154"; 319 | @fa-var-usd: "\f155"; 320 | @fa-var-inr: "\f156"; 321 | @fa-var-jpy: "\f157"; 322 | @fa-var-rub: "\f158"; 323 | @fa-var-krw: "\f159"; 324 | @fa-var-btc: "\f15a"; 325 | @fa-var-file: "\f15b"; 326 | @fa-var-file-text: "\f15c"; 327 | @fa-var-sort-alpha-asc: "\f15d"; 328 | @fa-var-sort-alpha-desc: "\f15e"; 329 | @fa-var-sort-amount-asc: "\f160"; 330 | @fa-var-sort-amount-desc: "\f161"; 331 | @fa-var-sort-numeric-asc: "\f162"; 332 | @fa-var-sort-numeric-desc: "\f163"; 333 | @fa-var-thumbs-up: "\f164"; 334 | @fa-var-thumbs-down: "\f165"; 335 | @fa-var-youtube-square: "\f166"; 336 | @fa-var-youtube: "\f167"; 337 | @fa-var-xing: "\f168"; 338 | @fa-var-xing-square: "\f169"; 339 | @fa-var-youtube-play: "\f16a"; 340 | @fa-var-dropbox: "\f16b"; 341 | @fa-var-stack-overflow: "\f16c"; 342 | @fa-var-instagram: "\f16d"; 343 | @fa-var-flickr: "\f16e"; 344 | @fa-var-adn: "\f170"; 345 | @fa-var-bitbucket: "\f171"; 346 | @fa-var-bitbucket-square: "\f172"; 347 | @fa-var-tumblr: "\f173"; 348 | @fa-var-tumblr-square: "\f174"; 349 | @fa-var-long-arrow-down: "\f175"; 350 | @fa-var-long-arrow-up: "\f176"; 351 | @fa-var-long-arrow-left: "\f177"; 352 | @fa-var-long-arrow-right: "\f178"; 353 | @fa-var-apple: "\f179"; 354 | @fa-var-windows: "\f17a"; 355 | @fa-var-android: "\f17b"; 356 | @fa-var-linux: "\f17c"; 357 | @fa-var-dribbble: "\f17d"; 358 | @fa-var-skype: "\f17e"; 359 | @fa-var-foursquare: "\f180"; 360 | @fa-var-trello: "\f181"; 361 | @fa-var-female: "\f182"; 362 | @fa-var-male: "\f183"; 363 | @fa-var-gittip: "\f184"; 364 | @fa-var-sun-o: "\f185"; 365 | @fa-var-moon-o: "\f186"; 366 | @fa-var-archive: "\f187"; 367 | @fa-var-bug: "\f188"; 368 | @fa-var-vk: "\f189"; 369 | @fa-var-weibo: "\f18a"; 370 | @fa-var-renren: "\f18b"; 371 | @fa-var-pagelines: "\f18c"; 372 | @fa-var-stack-exchange: "\f18d"; 373 | @fa-var-arrow-circle-o-right: "\f18e"; 374 | @fa-var-arrow-circle-o-left: "\f190"; 375 | @fa-var-caret-square-o-left: "\f191"; 376 | @fa-var-dot-circle-o: "\f192"; 377 | @fa-var-wheelchair: "\f193"; 378 | @fa-var-vimeo-square: "\f194"; 379 | @fa-var-try: "\f195"; 380 | @fa-var-plus-square-o: "\f196"; 381 | 382 | -------------------------------------------------------------------------------- /public/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | $fa-font-path: "../fonts" !default; 5 | //$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.0.3/fonts" !default; // for referencing Bootstrap CDN font files directly 6 | $fa-css-prefix: fa !default; 7 | $fa-version: "4.0.3" !default; 8 | $fa-border-color: #eee !default; 9 | $fa-inverse: #fff !default; 10 | $fa-li-width: (30em / 14) !default; 11 | 12 | $fa-var-glass: "\f000"; 13 | $fa-var-music: "\f001"; 14 | $fa-var-search: "\f002"; 15 | $fa-var-envelope-o: "\f003"; 16 | $fa-var-heart: "\f004"; 17 | $fa-var-star: "\f005"; 18 | $fa-var-star-o: "\f006"; 19 | $fa-var-user: "\f007"; 20 | $fa-var-film: "\f008"; 21 | $fa-var-th-large: "\f009"; 22 | $fa-var-th: "\f00a"; 23 | $fa-var-th-list: "\f00b"; 24 | $fa-var-check: "\f00c"; 25 | $fa-var-times: "\f00d"; 26 | $fa-var-search-plus: "\f00e"; 27 | $fa-var-search-minus: "\f010"; 28 | $fa-var-power-off: "\f011"; 29 | $fa-var-signal: "\f012"; 30 | $fa-var-cog: "\f013"; 31 | $fa-var-trash-o: "\f014"; 32 | $fa-var-home: "\f015"; 33 | $fa-var-file-o: "\f016"; 34 | $fa-var-clock-o: "\f017"; 35 | $fa-var-road: "\f018"; 36 | $fa-var-download: "\f019"; 37 | $fa-var-arrow-circle-o-down: "\f01a"; 38 | $fa-var-arrow-circle-o-up: "\f01b"; 39 | $fa-var-inbox: "\f01c"; 40 | $fa-var-play-circle-o: "\f01d"; 41 | $fa-var-repeat: "\f01e"; 42 | $fa-var-refresh: "\f021"; 43 | $fa-var-list-alt: "\f022"; 44 | $fa-var-lock: "\f023"; 45 | $fa-var-flag: "\f024"; 46 | $fa-var-headphones: "\f025"; 47 | $fa-var-volume-off: "\f026"; 48 | $fa-var-volume-down: "\f027"; 49 | $fa-var-volume-up: "\f028"; 50 | $fa-var-qrcode: "\f029"; 51 | $fa-var-barcode: "\f02a"; 52 | $fa-var-tag: "\f02b"; 53 | $fa-var-tags: "\f02c"; 54 | $fa-var-book: "\f02d"; 55 | $fa-var-bookmark: "\f02e"; 56 | $fa-var-print: "\f02f"; 57 | $fa-var-camera: "\f030"; 58 | $fa-var-font: "\f031"; 59 | $fa-var-bold: "\f032"; 60 | $fa-var-italic: "\f033"; 61 | $fa-var-text-height: "\f034"; 62 | $fa-var-text-width: "\f035"; 63 | $fa-var-align-left: "\f036"; 64 | $fa-var-align-center: "\f037"; 65 | $fa-var-align-right: "\f038"; 66 | $fa-var-align-justify: "\f039"; 67 | $fa-var-list: "\f03a"; 68 | $fa-var-outdent: "\f03b"; 69 | $fa-var-indent: "\f03c"; 70 | $fa-var-video-camera: "\f03d"; 71 | $fa-var-picture-o: "\f03e"; 72 | $fa-var-pencil: "\f040"; 73 | $fa-var-map-marker: "\f041"; 74 | $fa-var-adjust: "\f042"; 75 | $fa-var-tint: "\f043"; 76 | $fa-var-pencil-square-o: "\f044"; 77 | $fa-var-share-square-o: "\f045"; 78 | $fa-var-check-square-o: "\f046"; 79 | $fa-var-arrows: "\f047"; 80 | $fa-var-step-backward: "\f048"; 81 | $fa-var-fast-backward: "\f049"; 82 | $fa-var-backward: "\f04a"; 83 | $fa-var-play: "\f04b"; 84 | $fa-var-pause: "\f04c"; 85 | $fa-var-stop: "\f04d"; 86 | $fa-var-forward: "\f04e"; 87 | $fa-var-fast-forward: "\f050"; 88 | $fa-var-step-forward: "\f051"; 89 | $fa-var-eject: "\f052"; 90 | $fa-var-chevron-left: "\f053"; 91 | $fa-var-chevron-right: "\f054"; 92 | $fa-var-plus-circle: "\f055"; 93 | $fa-var-minus-circle: "\f056"; 94 | $fa-var-times-circle: "\f057"; 95 | $fa-var-check-circle: "\f058"; 96 | $fa-var-question-circle: "\f059"; 97 | $fa-var-info-circle: "\f05a"; 98 | $fa-var-crosshairs: "\f05b"; 99 | $fa-var-times-circle-o: "\f05c"; 100 | $fa-var-check-circle-o: "\f05d"; 101 | $fa-var-ban: "\f05e"; 102 | $fa-var-arrow-left: "\f060"; 103 | $fa-var-arrow-right: "\f061"; 104 | $fa-var-arrow-up: "\f062"; 105 | $fa-var-arrow-down: "\f063"; 106 | $fa-var-share: "\f064"; 107 | $fa-var-expand: "\f065"; 108 | $fa-var-compress: "\f066"; 109 | $fa-var-plus: "\f067"; 110 | $fa-var-minus: "\f068"; 111 | $fa-var-asterisk: "\f069"; 112 | $fa-var-exclamation-circle: "\f06a"; 113 | $fa-var-gift: "\f06b"; 114 | $fa-var-leaf: "\f06c"; 115 | $fa-var-fire: "\f06d"; 116 | $fa-var-eye: "\f06e"; 117 | $fa-var-eye-slash: "\f070"; 118 | $fa-var-exclamation-triangle: "\f071"; 119 | $fa-var-plane: "\f072"; 120 | $fa-var-calendar: "\f073"; 121 | $fa-var-random: "\f074"; 122 | $fa-var-comment: "\f075"; 123 | $fa-var-magnet: "\f076"; 124 | $fa-var-chevron-up: "\f077"; 125 | $fa-var-chevron-down: "\f078"; 126 | $fa-var-retweet: "\f079"; 127 | $fa-var-shopping-cart: "\f07a"; 128 | $fa-var-folder: "\f07b"; 129 | $fa-var-folder-open: "\f07c"; 130 | $fa-var-arrows-v: "\f07d"; 131 | $fa-var-arrows-h: "\f07e"; 132 | $fa-var-bar-chart-o: "\f080"; 133 | $fa-var-twitter-square: "\f081"; 134 | $fa-var-facebook-square: "\f082"; 135 | $fa-var-camera-retro: "\f083"; 136 | $fa-var-key: "\f084"; 137 | $fa-var-cogs: "\f085"; 138 | $fa-var-comments: "\f086"; 139 | $fa-var-thumbs-o-up: "\f087"; 140 | $fa-var-thumbs-o-down: "\f088"; 141 | $fa-var-star-half: "\f089"; 142 | $fa-var-heart-o: "\f08a"; 143 | $fa-var-sign-out: "\f08b"; 144 | $fa-var-linkedin-square: "\f08c"; 145 | $fa-var-thumb-tack: "\f08d"; 146 | $fa-var-external-link: "\f08e"; 147 | $fa-var-sign-in: "\f090"; 148 | $fa-var-trophy: "\f091"; 149 | $fa-var-github-square: "\f092"; 150 | $fa-var-upload: "\f093"; 151 | $fa-var-lemon-o: "\f094"; 152 | $fa-var-phone: "\f095"; 153 | $fa-var-square-o: "\f096"; 154 | $fa-var-bookmark-o: "\f097"; 155 | $fa-var-phone-square: "\f098"; 156 | $fa-var-twitter: "\f099"; 157 | $fa-var-facebook: "\f09a"; 158 | $fa-var-github: "\f09b"; 159 | $fa-var-unlock: "\f09c"; 160 | $fa-var-credit-card: "\f09d"; 161 | $fa-var-rss: "\f09e"; 162 | $fa-var-hdd-o: "\f0a0"; 163 | $fa-var-bullhorn: "\f0a1"; 164 | $fa-var-bell: "\f0f3"; 165 | $fa-var-certificate: "\f0a3"; 166 | $fa-var-hand-o-right: "\f0a4"; 167 | $fa-var-hand-o-left: "\f0a5"; 168 | $fa-var-hand-o-up: "\f0a6"; 169 | $fa-var-hand-o-down: "\f0a7"; 170 | $fa-var-arrow-circle-left: "\f0a8"; 171 | $fa-var-arrow-circle-right: "\f0a9"; 172 | $fa-var-arrow-circle-up: "\f0aa"; 173 | $fa-var-arrow-circle-down: "\f0ab"; 174 | $fa-var-globe: "\f0ac"; 175 | $fa-var-wrench: "\f0ad"; 176 | $fa-var-tasks: "\f0ae"; 177 | $fa-var-filter: "\f0b0"; 178 | $fa-var-briefcase: "\f0b1"; 179 | $fa-var-arrows-alt: "\f0b2"; 180 | $fa-var-users: "\f0c0"; 181 | $fa-var-link: "\f0c1"; 182 | $fa-var-cloud: "\f0c2"; 183 | $fa-var-flask: "\f0c3"; 184 | $fa-var-scissors: "\f0c4"; 185 | $fa-var-files-o: "\f0c5"; 186 | $fa-var-paperclip: "\f0c6"; 187 | $fa-var-floppy-o: "\f0c7"; 188 | $fa-var-square: "\f0c8"; 189 | $fa-var-bars: "\f0c9"; 190 | $fa-var-list-ul: "\f0ca"; 191 | $fa-var-list-ol: "\f0cb"; 192 | $fa-var-strikethrough: "\f0cc"; 193 | $fa-var-underline: "\f0cd"; 194 | $fa-var-table: "\f0ce"; 195 | $fa-var-magic: "\f0d0"; 196 | $fa-var-truck: "\f0d1"; 197 | $fa-var-pinterest: "\f0d2"; 198 | $fa-var-pinterest-square: "\f0d3"; 199 | $fa-var-google-plus-square: "\f0d4"; 200 | $fa-var-google-plus: "\f0d5"; 201 | $fa-var-money: "\f0d6"; 202 | $fa-var-caret-down: "\f0d7"; 203 | $fa-var-caret-up: "\f0d8"; 204 | $fa-var-caret-left: "\f0d9"; 205 | $fa-var-caret-right: "\f0da"; 206 | $fa-var-columns: "\f0db"; 207 | $fa-var-sort: "\f0dc"; 208 | $fa-var-sort-asc: "\f0dd"; 209 | $fa-var-sort-desc: "\f0de"; 210 | $fa-var-envelope: "\f0e0"; 211 | $fa-var-linkedin: "\f0e1"; 212 | $fa-var-undo: "\f0e2"; 213 | $fa-var-gavel: "\f0e3"; 214 | $fa-var-tachometer: "\f0e4"; 215 | $fa-var-comment-o: "\f0e5"; 216 | $fa-var-comments-o: "\f0e6"; 217 | $fa-var-bolt: "\f0e7"; 218 | $fa-var-sitemap: "\f0e8"; 219 | $fa-var-umbrella: "\f0e9"; 220 | $fa-var-clipboard: "\f0ea"; 221 | $fa-var-lightbulb-o: "\f0eb"; 222 | $fa-var-exchange: "\f0ec"; 223 | $fa-var-cloud-download: "\f0ed"; 224 | $fa-var-cloud-upload: "\f0ee"; 225 | $fa-var-user-md: "\f0f0"; 226 | $fa-var-stethoscope: "\f0f1"; 227 | $fa-var-suitcase: "\f0f2"; 228 | $fa-var-bell-o: "\f0a2"; 229 | $fa-var-coffee: "\f0f4"; 230 | $fa-var-cutlery: "\f0f5"; 231 | $fa-var-file-text-o: "\f0f6"; 232 | $fa-var-building-o: "\f0f7"; 233 | $fa-var-hospital-o: "\f0f8"; 234 | $fa-var-ambulance: "\f0f9"; 235 | $fa-var-medkit: "\f0fa"; 236 | $fa-var-fighter-jet: "\f0fb"; 237 | $fa-var-beer: "\f0fc"; 238 | $fa-var-h-square: "\f0fd"; 239 | $fa-var-plus-square: "\f0fe"; 240 | $fa-var-angle-double-left: "\f100"; 241 | $fa-var-angle-double-right: "\f101"; 242 | $fa-var-angle-double-up: "\f102"; 243 | $fa-var-angle-double-down: "\f103"; 244 | $fa-var-angle-left: "\f104"; 245 | $fa-var-angle-right: "\f105"; 246 | $fa-var-angle-up: "\f106"; 247 | $fa-var-angle-down: "\f107"; 248 | $fa-var-desktop: "\f108"; 249 | $fa-var-laptop: "\f109"; 250 | $fa-var-tablet: "\f10a"; 251 | $fa-var-mobile: "\f10b"; 252 | $fa-var-circle-o: "\f10c"; 253 | $fa-var-quote-left: "\f10d"; 254 | $fa-var-quote-right: "\f10e"; 255 | $fa-var-spinner: "\f110"; 256 | $fa-var-circle: "\f111"; 257 | $fa-var-reply: "\f112"; 258 | $fa-var-github-alt: "\f113"; 259 | $fa-var-folder-o: "\f114"; 260 | $fa-var-folder-open-o: "\f115"; 261 | $fa-var-smile-o: "\f118"; 262 | $fa-var-frown-o: "\f119"; 263 | $fa-var-meh-o: "\f11a"; 264 | $fa-var-gamepad: "\f11b"; 265 | $fa-var-keyboard-o: "\f11c"; 266 | $fa-var-flag-o: "\f11d"; 267 | $fa-var-flag-checkered: "\f11e"; 268 | $fa-var-terminal: "\f120"; 269 | $fa-var-code: "\f121"; 270 | $fa-var-reply-all: "\f122"; 271 | $fa-var-mail-reply-all: "\f122"; 272 | $fa-var-star-half-o: "\f123"; 273 | $fa-var-location-arrow: "\f124"; 274 | $fa-var-crop: "\f125"; 275 | $fa-var-code-fork: "\f126"; 276 | $fa-var-chain-broken: "\f127"; 277 | $fa-var-question: "\f128"; 278 | $fa-var-info: "\f129"; 279 | $fa-var-exclamation: "\f12a"; 280 | $fa-var-superscript: "\f12b"; 281 | $fa-var-subscript: "\f12c"; 282 | $fa-var-eraser: "\f12d"; 283 | $fa-var-puzzle-piece: "\f12e"; 284 | $fa-var-microphone: "\f130"; 285 | $fa-var-microphone-slash: "\f131"; 286 | $fa-var-shield: "\f132"; 287 | $fa-var-calendar-o: "\f133"; 288 | $fa-var-fire-extinguisher: "\f134"; 289 | $fa-var-rocket: "\f135"; 290 | $fa-var-maxcdn: "\f136"; 291 | $fa-var-chevron-circle-left: "\f137"; 292 | $fa-var-chevron-circle-right: "\f138"; 293 | $fa-var-chevron-circle-up: "\f139"; 294 | $fa-var-chevron-circle-down: "\f13a"; 295 | $fa-var-html5: "\f13b"; 296 | $fa-var-css3: "\f13c"; 297 | $fa-var-anchor: "\f13d"; 298 | $fa-var-unlock-alt: "\f13e"; 299 | $fa-var-bullseye: "\f140"; 300 | $fa-var-ellipsis-h: "\f141"; 301 | $fa-var-ellipsis-v: "\f142"; 302 | $fa-var-rss-square: "\f143"; 303 | $fa-var-play-circle: "\f144"; 304 | $fa-var-ticket: "\f145"; 305 | $fa-var-minus-square: "\f146"; 306 | $fa-var-minus-square-o: "\f147"; 307 | $fa-var-level-up: "\f148"; 308 | $fa-var-level-down: "\f149"; 309 | $fa-var-check-square: "\f14a"; 310 | $fa-var-pencil-square: "\f14b"; 311 | $fa-var-external-link-square: "\f14c"; 312 | $fa-var-share-square: "\f14d"; 313 | $fa-var-compass: "\f14e"; 314 | $fa-var-caret-square-o-down: "\f150"; 315 | $fa-var-caret-square-o-up: "\f151"; 316 | $fa-var-caret-square-o-right: "\f152"; 317 | $fa-var-eur: "\f153"; 318 | $fa-var-gbp: "\f154"; 319 | $fa-var-usd: "\f155"; 320 | $fa-var-inr: "\f156"; 321 | $fa-var-jpy: "\f157"; 322 | $fa-var-rub: "\f158"; 323 | $fa-var-krw: "\f159"; 324 | $fa-var-btc: "\f15a"; 325 | $fa-var-file: "\f15b"; 326 | $fa-var-file-text: "\f15c"; 327 | $fa-var-sort-alpha-asc: "\f15d"; 328 | $fa-var-sort-alpha-desc: "\f15e"; 329 | $fa-var-sort-amount-asc: "\f160"; 330 | $fa-var-sort-amount-desc: "\f161"; 331 | $fa-var-sort-numeric-asc: "\f162"; 332 | $fa-var-sort-numeric-desc: "\f163"; 333 | $fa-var-thumbs-up: "\f164"; 334 | $fa-var-thumbs-down: "\f165"; 335 | $fa-var-youtube-square: "\f166"; 336 | $fa-var-youtube: "\f167"; 337 | $fa-var-xing: "\f168"; 338 | $fa-var-xing-square: "\f169"; 339 | $fa-var-youtube-play: "\f16a"; 340 | $fa-var-dropbox: "\f16b"; 341 | $fa-var-stack-overflow: "\f16c"; 342 | $fa-var-instagram: "\f16d"; 343 | $fa-var-flickr: "\f16e"; 344 | $fa-var-adn: "\f170"; 345 | $fa-var-bitbucket: "\f171"; 346 | $fa-var-bitbucket-square: "\f172"; 347 | $fa-var-tumblr: "\f173"; 348 | $fa-var-tumblr-square: "\f174"; 349 | $fa-var-long-arrow-down: "\f175"; 350 | $fa-var-long-arrow-up: "\f176"; 351 | $fa-var-long-arrow-left: "\f177"; 352 | $fa-var-long-arrow-right: "\f178"; 353 | $fa-var-apple: "\f179"; 354 | $fa-var-windows: "\f17a"; 355 | $fa-var-android: "\f17b"; 356 | $fa-var-linux: "\f17c"; 357 | $fa-var-dribbble: "\f17d"; 358 | $fa-var-skype: "\f17e"; 359 | $fa-var-foursquare: "\f180"; 360 | $fa-var-trello: "\f181"; 361 | $fa-var-female: "\f182"; 362 | $fa-var-male: "\f183"; 363 | $fa-var-gittip: "\f184"; 364 | $fa-var-sun-o: "\f185"; 365 | $fa-var-moon-o: "\f186"; 366 | $fa-var-archive: "\f187"; 367 | $fa-var-bug: "\f188"; 368 | $fa-var-vk: "\f189"; 369 | $fa-var-weibo: "\f18a"; 370 | $fa-var-renren: "\f18b"; 371 | $fa-var-pagelines: "\f18c"; 372 | $fa-var-stack-exchange: "\f18d"; 373 | $fa-var-arrow-circle-o-right: "\f18e"; 374 | $fa-var-arrow-circle-o-left: "\f190"; 375 | $fa-var-caret-square-o-left: "\f191"; 376 | $fa-var-dot-circle-o: "\f192"; 377 | $fa-var-wheelchair: "\f193"; 378 | $fa-var-vimeo-square: "\f194"; 379 | $fa-var-try: "\f195"; 380 | $fa-var-plus-square-o: "\f196"; 381 | 382 | -------------------------------------------------------------------------------- /public/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Muka 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 34 | 35 | 36 | 37 | 58 | 59 | 60 | 61 | 62 | 91 | 92 |
93 |
94 |
Meet The Team
95 |

Katherine Del Villar

96 |

Arezo Halabisaz

97 |

Maureen Sabalvaro

98 |
99 |

MUKA was founded by three Filipinas who were all coincidentally finishing up a Masters degree in Social Entrepreneurship in San Francisco. Arezo, Katy, and Maus came together initially through their passion for food and music. During one of the many chow sessions, another passion arose - solving prevalent social issues in their home country.

100 |
101 |
102 | 103 |
104 | 105 |
106 | 107 |
108 | 109 | 110 |
111 | 112 | 113 |
114 | 115 |
116 | 117 |
118 |
119 |
120 |
121 |

You buy an item:
122 |
We take care of the rest!

123 |

Our Muka Team picks up the item from the crafter - checks it for quality - and ships it directly to you using Amazon shipping!

If for any reason you are unhappy with your purchase, you can send it back to us for free!

124 |
125 |
126 | 127 |
128 |
129 | 130 |
131 | 132 | 133 |
134 | 135 | 136 |
137 | 138 |
139 | 140 |
141 |
142 |
143 |
144 |

145 |
Shipping from Amazon

146 |

We take your products from the local hub to the Amazon warehouse store in Manila - from there we can ship worldwide!

147 |
148 |
149 | 150 |
151 |
152 | 153 |
154 | 155 | 156 |
157 | 158 | 159 |
160 | 161 |
162 | 163 |
164 |
165 |
166 |
167 |

You Can Register an Account

168 |
169 |

170 | 171 | 172 |

173 | 174 |

175 | 176 | 177 |

178 | 179 | 180 | 181 |

182 | 183 | 184 |

185 | 186 | 187 | 188 | 189 |

190 | 191 | 192 |

193 | 194 | 195 | 196 |

197 | 198 | 199 |

200 | 201 |

202 | 203 |

204 | 205 |
206 |
207 |
208 | 209 |
210 |

211 |
Just Pay Us Safely!

212 |

We accept Pay Pal and all major credit cards.

Buying has never been easier!

213 | 214 |
215 | 216 | 217 | 218 | 219 | 220 | 221 |
222 |
223 |
224 |
225 | 226 |
227 | 228 | 229 |
230 | 231 | 232 | 256 | 257 | 258 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | --------------------------------------------------------------------------------