This file contains hidden or 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
{ | |
"files": | |
{ | |
"history" : "https://raw.github.com/balupton/history.js/master/scripts/compressed/history.js", | |
"incrementable" : "https://raw.github.com/LeaVerou/Incrementable/master/incrementable.js", | |
"jquery" : "http://code.jquery.com/jquery.min.js", | |
"json2" : "https://raw.github.com/douglascrockford/JSON-js/master/json2.js", | |
"modernizr" : "https://raw.github.com/Modernizr/Modernizr/master/modernizr.js", | |
"normalize.css" : "https://raw.github.com/necolas/normalize.css/master/normalize.css", | |
"prefixfree" : "https://raw.github.com/LeaVerou/prefixfree/master/prefixfree.min.js", |
This file contains hidden or 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
{ | |
"alignment_chars": | |
[ | |
"=", | |
":", | |
"-" | |
], | |
"alignment_space_chars": | |
[ | |
"=", |
This file contains hidden or 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
/** | |
* Testing calc() | |
*/ | |
.wrapper { width: 500px; background: #bbb; } | |
.example1 { | |
background: #222; | |
width: 100%; | |
height: 100px; | |
margin: 20px; |
This file contains hidden or 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
/** | |
* CSS3 button - WIP | |
* @danielbrodin | |
*/ | |
html { background: #e8e8e8; } | |
body { padding: 100px } | |
.button { | |
background: #ccc; | |
background: linear-gradient(bottom,rgba(161,213,79,1) 50%, rgba(124,188,10,1) 100%); |
This file contains hidden or 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
/** | |
* CSS3 button - WIP | |
* @danielbrodin | |
*/ | |
html { background: #e8e8e8; } | |
body { padding: 100px } | |
.button { | |
background: #ccc; | |
background: linear-gradient(bottom, rgba(198,209,138,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%); |
This file contains hidden or 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
/** | |
* CSS3 menu | |
* @danielbrodin | |
*/ | |
html { background: #e8e8e8; } | |
.nav { margin: 50px; padding: 0; } | |
.nav li { list-style: none; float: left; } | |
.nav a { | |
font: 12px sans-serif; |