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, LI { | |
position: relative; | |
margin: 0; | |
padding: 0; | |
} | |
.wrapper { | |
width: 20em; | |
height: 20em; | |
margin: 2em auto 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
HTML { | |
height: 100%; | |
} | |
BODY { | |
background: | |
repeating-linear-gradient( -45deg, | |
rgba(255,255,255, 0) 1.9em, | |
rgba(0, 0, 0, .1) 2em, | |
rgba(255,255,255, 0) 2.1em ) | |
0 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
@function shadows($max: 5, $color: white){ | |
$out: null; | |
@for $i from 0 through $max { | |
$pos: #{$i}px; | |
$pos-n: -$pos; | |
$shadow-t-l: $pos-n $pos-n 0 $color; | |
$out: append( $out, $shadow-t-l, comma ); | |
$shadow-t-r: $pos $pos-n 0 $color; | |
$out: append( $out, $shadow-t-r, comma ); |
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
// ==UserScript== | |
// @name CommentsEditor | |
// @namespace http:// yoksel.ru/ | |
// @description Html-editor for comments on Livejournal.com | |
// @include *livejournal.com* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// ==/UserScript== | |
GM_addStyle("#mybuttons {\ | |
margin: 5px 0px 5px; \ |