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
hr { | |
height: 10px; | |
@include background-image | |
(linear-gradient(left, black 1%, transparent 1%), | |
linear-gradient(left, black 2%, transparent 2%), | |
linear-gradient(left, black 10%, transparent 10%), | |
linear-gradient(left, black 20%, transparent 20%), | |
linear-gradient(top, transparent 5px, black 5px, transparent 6px)); | |
border: none; | |
background-position: 0px 50%, 0px 50%, 0px 50%, 0px 50%, 0px 0; |
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
@mixin ruler($width:50px,$height:10px) { | |
background: { | |
color: black; | |
clip: content-box; | |
} | |
border: { | |
width: $height 1px; | |
style: solid; | |
color: transparent black; | |
}; |
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
.logo { | |
border: 10px solid orange; | |
width: 100px; | |
height: 100px; | |
border-radius: 40px; | |
position: relative; | |
box-sizing: border-box; | |
color: black; | |
} | |
.logo:before { |
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
var casper = require('casper').create({ | |
verbose : true, | |
logLevel : 'info' | |
}); | |
var images = []; | |
var fs=require("fs") | |
/** | |
* Configuration here | |
*/ |
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
function $(expr, con) { | |
return [].slice.call((con || document).querySelectorAll(expr)); | |
} |
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
##Ganglio theme | |
# A couple of definition | |
OPEN_SQUARE="%{$reset_color%}%{$fg[cyan]%}[%{$reset_color%}" | |
CLOSE_SQUARE="%{$reset_color%}%{$fg[cyan]%}]%{$reset_color%}" | |
TL_ANGLE="%{$reset_color%}%{$fg[cyan]%}┌%{$reset_color%}" | |
BL_ANGLE="%{$reset_color%}%{$fg[cyan]%}└%{$reset_color%}" | |
V_BAR="%{$reset_color%}%{$fg[cyan]%}│%{$reset_color%}" | |
VR_BAR="%{$reset_color%}%{$fg[cyan]%}├%{$reset_color%}" | |
AT_SIGN="%{$reset_color%}%{$fg[cyan]%}@%{$reset_color%}" |
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
.pesco { | |
width: 600px; | |
height: 300px; | |
box-shadow: 0 0 10px black inset; | |
} |
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 | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
ul.gallery { | |
list-style: none; | |
padding: 0; | |
margin: 0; | |
} | |
ul.gallery li { | |
width: 150px; | |
height: 150px; | |
overflow: hidden; |