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
/** | |
* CSS inheritance? | |
*/ | |
body { | |
font-family: open-sans; | |
} | |
.bordered { | |
border: 1px solid blue; |
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
<!-- this is XML --> | |
<element> | |
<!-- we used to think it was cool in the late 90s --> | |
<child-element> | |
<!-- people used to think Sting was cool too --> | |
</child-element> | |
</element> |
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
browsers: [ | |
'ie >= 9', | |
'last 5 Chrome versions', | |
'last 5 Firefox versions', | |
'Firefox ESR', | |
'Safari >= 5.1', | |
'iOS >= 5.1' | |
] |
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
/** | |
* Specificity and pseudo elements. | |
*/ | |
body { | |
font-family: "Open Sans", sans-serif; | |
} | |
.foo { | |
background-color: red; |
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
module.exports = { | |
options: { | |
config: 'config.rb', | |
bundleExec: true | |
}, | |
clean: { | |
options: { | |
clean: true | |
} | |
}, |
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
[08:49:33][Step 2/3] Fatal error: Failed to execute "git ls-remote --tags --heads git://github.com/FortAwesome/Font-Awesome.git", exit code of #128 |
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
/** | |
* pointer-events: none; | |
* see http://caniuse.com/#feat=pointer-events | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.link_disabled { | |
pointer-events: none; |
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
/** | |
* Unicode number operators with different fonts | |
*/ | |
body { | |
background-color: #fff; | |
color: #333; | |
font-family: sans-serif; | |
font-size: 14pt; | |
} |
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
/** | |
* Use an attribute selector to hide when count is 0. | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.badge { | |
display: inline-block; |
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
/** | |
* Use an attribute selector to hide when count is 0. | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.badge { | |
display: inline-block; |