Created
July 9, 2013 04:44
-
-
Save jeef3/5954787 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.box { | |
padding: 10px; | |
margin: 30px; | |
font-weight: bold; | |
font-family: sans-serif; | |
} | |
.text { | |
margin: 10px; | |
} | |
.box.red { | |
background: red; | |
} | |
.red { | |
color: red; | |
} | |
.box.blue { | |
background: blue; | |
} | |
.blue { | |
color: blue; | |
} | |
.box.green { | |
background: #00ff00; | |
} | |
.green { | |
color: #00ff00; | |
} |
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
<div class="box red"><span class="text blue">blue</span><span class="text green">green</span></div> | |
<div class="box blue"><span class="text red">red</span><span class="text green">green</span></div> | |
<div class="box green"><span class="text blue">blue</span><span class="text red">red</span></div> |
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
// alert('Hello world!'); |
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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment