- Ebay category listing http://www.ebay.com/sch/Cell-Phones-Smartphones-/9355/i.html
- Netflix Dashboard http://www.netflix.com/WiHome
- Apple iMac product page http://store.apple.com/us/buy-mac/imac
- Sky TV Guide http://tv.sky.com/tv-guide
- Comcast Offers https://www.comcastoffers.com/
- Amazon Book Product Detail Pagehttp://www.amazon.com/Element-Finding-Passion-Changes-Everything-ebook/dp/B001MSMUH0/
- Groupon Deal detail page http://www.groupon.com/deals/detroit-seafood-market-5
- Wikipedia Edit Page https://en.wikipedia.org/w/index.php?title=Thaddeus_Stevens&action=edit
- Facebook http://facebook.com
- DirectTV Packages http://www.directv.com/DTVAPP/new_customer/base_packages.jsp?ACM=false&lpos=Header:3
View gist:9856884
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
// Configuration | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
shell: { | |
patternlab: { | |
command: "php core/builder.php -gp" | |
} | |
}, |
View gist:10019761
View gist:91931810b033a79cf8a9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="block"> | |
<img src="{{ img.square.src }}" alt="{{ img.square.alt }}" class="block__thumb" /> | |
<div class="block__body"> | |
<h2 class="block__title">{{ title }}</h2> | |
<p class="block__subtitle">{{ subtitle }}</p> | |
</div> | |
</div> |
View gist:a7926cfea4dc742569d9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"img": { | |
"square": { | |
"src": "../../images/fpo_square.png", | |
"alt": "Square Thumbnail" | |
}, | |
}, | |
"title" : "Lorem Ipsumdmada (32 characters)", | |
"subtitle" : "Dolar sit amee consectetur" | |
} |
View gist:2a0961a158be2a96e2f1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"person" : { | |
"img": { | |
"square": { | |
"src": "../../images/sample/avatar.jpg", | |
"alt": "Thisisauser Withaverylonglastname" | |
}, | |
}, | |
"title" : "Thisisauser Withaverylonglastname", | |
"subtitle" : "Chief Executive Officer" | |
} |
View gist:eca88c6b263d0425fec7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"peopleList" : [ | |
{ | |
"img": { | |
"square": { | |
"src": "../../images/sample/avatar-1.jpg", | |
"alt": "Steve Boomshakalaka" | |
}, | |
}, | |
"title" : "Steve Boomshakalaka", | |
"subtitle" : "CIA" |
View gist:1c3265f93113514a0a8e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"isAdmin" : true | |
} |
View gist:0b8a5d082bde9fae5663
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
// Configuration | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
sass: { | |
dist: { | |
options: { | |
style: 'compressed' | |
}, |
View dabblet.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* text-rendering: optimizeLegibility example | |
*/ | |
body { | |
background: #BE6700; | |
} | |
h1 { | |
color: #DEDCB9; | |
font: italic normal 5em/1 Georgia, "Times New Roman", Times, serif; |
OlderNewer