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
/** | |
* 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
###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
/** | |
* 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
/** | |
* 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
/** | |
* original found here: http://stackoverflow.com/questions/7264899/detect-css-transitions-using-javascript-and-without-modernizr | |
*/ | |
var featureDetection = ( function( exports, root, document ) { | |
"use strict"; | |
exports.transition = function() { | |
var body, bodyStyle, feature, prefix; | |
body = document.body || document.documentElement; |
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 = function(grunt) { | |
"use strict"; | |
grunt.initConfig({ | |
sass : { | |
dev : { | |
options : { | |
sassFolder : 'sass', | |
cssFolder : 'dev', | |
sourcemap : 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
#### Aktivierung RealURL #### | |
config { | |
baseURL = http://domain.com/ | |
tx_realurl_enable = 1 | |
prefixLocalAnchors = all | |
notification_email_urlmode = all | |
} | |
#### Aktivierung RealURL #### | |
#Base-URL-Fix für IE6 Fehler "Vorgang abgebrochen" |
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
# A class-based template for jQuery plugins in Coffeescript | |
# | |
# $('.target').myPlugin({ paramA: 'not-foo' }); | |
# $('.target').myPlugin('myMethod', 'Hello, world'); | |
# | |
# Check out Alan Hogan's original jQuery plugin template: | |
# https://github.com/alanhogan/Coffeescript-jQuery-Plugin-Template | |
# | |
(($, window) -> |
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
/*========= Columns =================== */ | |
/* col1 / col2 / col3 */ | |
.ym-column>(.ym-col1>.ym-cbox-left)+(.ym-col2>.ym-cbox)+(.ym-col3>.ym-cbox-right>.ym-ie-clearing) | |
/* col1 / col3 / col2 */ | |
.ym-column>(.ym-col1>.ym-cbox-left)+(.ym-col3>.ym-cbox>.ym-ie-clearing)+(.ym-col2>.ym-cbox-right) | |
/* col2 / col3 / col1 */ | |
.ym-column>(.ym-col2>.ym-cbox-left)+(.ym-col3>.ym-cbox>.ym-ie-clearing)+(.ym-col1>.ym-cbox-right) |