This file contains 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
<?php | |
$databases = array ( | |
'default' => | |
array ( | |
'default' => | |
array ( | |
'database' => 'db_name', | |
'username' => 'db_pass', | |
'password' => 'db_password', |
This file contains 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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.7) | |
// ---- | |
$base-font-size: 16px; | |
@function em($px, $base: $base-font-size) { | |
@return ($px / $base) * 1em; | |
} |
This file contains 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
/** | |
* Short description. | |
* | |
* A longer, multi-line description. | |
* | |
* @param string $name | |
* A description of your variable | |
* @param int $count (default: 0) | |
* | |
* @return boolean |
This file contains 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
var gulp = require('gulp'); | |
var paths = require('compass-options').dirs(); | |
var compass = require('gulp-compass'); | |
var minifyCSS = require('gulp-minify-css'); | |
var prefix = require('gulp-autoprefixer'); | |
var rename = require('gulp-rename'); | |
gulp.task('sass', function() { | |
return gulp.src(paths.sass + '/**/*.scss') | |
.pipe(compass({ |
This file contains 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="block"> | |
<div class="block__element">Stuff</div> | |
<div class="block__element--modifier">Red Stuff</div> | |
<div class="block__element--modifier block__element--and-another">And Another</div> | |
</div> |
This file contains 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
name = Your module name | |
description = Just adds that incredibly silly mobile redirect code. | |
core = 7.x | |
version = 7.x-1.0 |
This file contains 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
// Compile Our Sass | |
gulp.task('sass', function() { | |
browserSync.notify('<span style="color: grey">Running:</span> Sass compiling'); | |
return gulp.src(paths.sass) | |
.pipe(sass({ | |
bundleExec: true, | |
style: 'expanded', | |
onError: browserSync.notify | |
})) | |
.pipe(prefix("last 2 versions", "> 1%")) |
This file contains 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
gulp.task('sass', function() { | |
browserSync.notify('<span style="color: grey">Running:</span> Sass compiling'); | |
return gulp.src(paths.sass) | |
.pipe(sass({ | |
bundleExec: true, | |
style: 'expanded', | |
onError: browserSync.notify | |
})) | |
.pipe(prefix("last 2 versions", "> 1%")) | |
.pipe(gulp.dest('_src/css')) |
This file contains 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
// ---- | |
// Sass (v3.3.10) | |
// Compass (v1.0.0.alpha.20) | |
// Breakpoint (v2.4.2) | |
// Singularity.gs (v1.2.1) | |
// ---- | |
@import "breakpoint"; | |
@import "singularitygs"; |
This file contains 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
// ---- | |
// Sass (v3.3.12) | |
// Compass (v1.0.0.alpha.21) | |
// ---- | |
@import "compass"; | |
.foo { | |
-webkit-filter: invert(100%); |
OlderNewer