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 nested selectors | |
*/ | |
body { | |
font-family: Arial, verdana, sans-serif; | |
font-size: 20px; | |
color: black; | |
} | |
.content .rot { |
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
/** | |
* YAML 4.0.2 Live Coding | |
*/ | |
@import "https://s3.amazonaws.com/elsignores/yaml/4.0.2/core/base.css"; | |
body { | |
background-color: #1a1a1a; | |
padding: 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
###jshint devel:true | |
### | |
###global require, define, _, module | |
### | |
###* | |
* Some new useful underscore mixins | |
* originally by echong: https://gist.github.com/echong/3861963#file-underscore-mixin-deepextend-coffee | |
### | |
( ( root, factory ) -> |
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 MacBook | |
*/ | |
body { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 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
tt_content.menu.20 { | |
# "Menu of subpages to these pages" | |
1 { | |
special = directory | |
stdWrap { | |
outerWrap = <nav class="sitemap" role="navigation">|</nav> | |
} | |
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
// YAML Columns mixins | |
// | |
// Documentation: | |
// http://www.yaml.de/docs/index.html#yaml-columns | |
$ym-col1-width : 25% !default; | |
$ym-col2-width : 50% !default; | |
$ym-col3-width : 25% !default; | |
$ym-column-layout : 'table' !default; |
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
/* YAML layout 123 with flexible .ym-col2 */ | |
body { | |
padding: 0; | |
margin: 0; | |
font-size: 100%; | |
font-family: Georgia, Times, "Times New Roman", serif; | |
color: #333; | |
background-color: #ccc; | |
} |
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
/** | |
* Different grids and floatings | |
*/ | |
/* just the page layout */ | |
body { | |
font-family: Arial, Helvetica, verdana, sans-serif; | |
font-size: 100%; | |
color: #222; | |
background: #ef4534; |
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 grid with 3 boxes | |
*/ | |
body { | |
background-color: #ccc; | |
} | |
.boxes { | |
display: table; /* clearing der Boxen aufheben / bei der Nutzung des Clearfix (s.u.) nicht notwendig */ |
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 | |
*/ | |
body { | |
background: #efefef; | |
} | |
.container { | |
display: table; |