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.2.19) | |
// Compass (v0.12.6) | |
// ---- | |
@mixin prefix($property, $value) { | |
-webkit-#{$property}: $value; | |
-moz-#{$property}: $value; | |
-ms-#{$property}: $value; | |
-o-#{$property}: $value; |
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="my-class" href="#"></a> | |
<a class="thumbs-up-on-square" href="#"></a> |
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.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$default: 1; | |
@mixin test($p: "no arguments have been passed, and if someone is going to pass this exact extremely long string, they better hide") { | |
@if ($p == "no arguments have been passed, and if someone is going to pass this exact extremely long string, they better hide") { | |
$p: $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
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$default: 1; | |
@mixin test($p: null) { | |
@if ($p != null) { | |
/* Do something if $p is passed */ |
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.2.17) | |
// Compass (v0.12.4) | |
// ---- | |
$default: 1; | |
@mixin test($p: null) { | |
@if ($p) { | |
/* Do something if $p is passed */ |
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.2.17) | |
// Compass (v0.12.4) | |
// ---- | |
$default: 1; | |
@mixin test($p: $default) { | |
@if ($p == $default) { | |
/* Do something if $p is 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
// ---- | |
// Sass (v3.2.17) | |
// Compass (v0.12.4) | |
// ---- | |
$var: 1; | |
@mixin test($p: null) { | |
@if ($p) { | |
/* Do something if $p was 4passed?*/ |
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 | |
/* extends lessphp's lessc class */ | |
class lessc_invert extends lessc { | |
private $f = 1; | |
protected function invert_color($c, $f){ | |
if($f) | |
return abs($c - 255); | |
return $c; | |
} |
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="c-panel-menu-c grid_2">test</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
// ---- | |
// Sass (v3.2.14) | |
// Compass (v0.12.2) | |
// ---- | |
%message { | |
border: 1px solid #ccc; | |
padding: 10px; | |
color: #333; | |
} |
NewerOlder