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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="left"></div> | |
<div class="right"></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
// Define the global API Var, otherwise | |
// the Components throw an error becaus there | |
// need a outer API Map for Merging | |
$api: (); | |
// Build a BEM Element | |
// | |
// @param {string} $name - The selector name | |
@mixin e($name) { | |
@at-root { |
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
.blubb__1 | |
.blubb__2 | |
.blubb__3 | |
.blubb__4 | |
.blubb__5 | |
.blubb__6 | |
.blubb__7 | |
.blubb__8 | |
.blubb__9 | |
.blubb__10 |
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
.blubb__1 | |
.blubb__2 | |
.blubb__3 | |
.blubb__4 | |
.blubb__5 | |
.blubb__6 | |
.blubb__7 | |
.blubb__8 | |
.blubb__9 | |
.blubb__10 |
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
<?php | |
// For professional Wordpress Pages | |
// Buisness Page with Emoji Support makes no sense. | |
/** | |
* Remove fucking Emoji Support | |
*/ | |
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); | |
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); |
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
gulp.task('rubysass', function () { | |
return rubysass(sassSrc, { sourcemap: true }) | |
.on("error", notify.onError("Sass Compile Error!")) | |
.on('error', function (err) { console.log(err.message); }) | |
.pipe(prefix({ | |
browsers: ["last 2 version", "> 1%", "ie 9", "chrome 30", "firefox 24"], | |
cascade: false | |
})) | |
.pipe(sourcemaps.write('.')) | |
.pipe(gulp.dest(targetDirCSS)); |
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 bananna> | |
<div bananna__fruit> | |
Bananna | |
</div> | |
</div> | |
<div bananna> | |
<div bananna__fruit=too-fresh> | |
Bananna | |
</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
/** | |
* Smart Append Selectors | |
* | |
* @param {string} $name - Name of the Tag | |
* @param {string|bool} $mod - Name of the modifier | |
* @param {bool} $context - For nested selector | |
* @param {string} $name - Name from the Tag | |
*/ | |
@mixin append($tag, $mod: false, $context: false) { | |
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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$color: ( | |
pink: #ff00fa | |
); | |
$header-comp: ( |
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="websiteWrapper"> | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus quis lectus metus, at posuere neque. Sed pharetra nibh eget orci convallis at posuere leo convallis. Sed blandit augue vitae augue scelerisque bibendum. Vivamus sit amet libero turpis, non venenatis urna. In blandit, odio convallis suscipit venenatis, ante ipsum cursus augue. | |
</div> |