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 CLoversHelper | |
// @namespace http://yoksel.ru/ | |
// @description A little thing for colourlovers | |
// @include *colourlovers.com* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// ==/UserScript== | |
GM_addStyle(" \ | |
div.html-btns .customButtons { \ |
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 S2-layer functions list | |
// @namespace http://yoksel.ru/ | |
// @description Add the functions list to page with layer source. | |
// @include *layersource.bml* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// ==/UserScript== | |
GM_addStyle(" \ | |
#funcIndex{ \ |
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 | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle("#mybuttons {\ |
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
// ---- | |
// libsass (v0.8.6) | |
// ---- | |
$transp: rgba(255,255,255,0); | |
$colors-warm: violet, teal, steelblue, skyblue, yellowgreen, yellow, gold, orange, crimson, purple; | |
$warm: ( | |
colors: $colors-warm, |
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.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
HTML, BODY { | |
height: 100%; | |
} | |
$out: orangered, gold; |
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 Some Developers Stuff for Livejournal.com | |
// @namespace http://yoksel.ru/ | |
// @description The script adds titles on the journal style settings pages and link to customize your journal style | |
// @include *livejournal.com* | |
// @include *livejournal.ru* | |
// @grant GM_getValue | |
// @grant GM_setValue | |
// @grant GM_listValues | |
// @grant GM_addStyle |
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 S2-layer functions list | |
// @namespace http://yoksel.ru/ | |
// @description Add the functions list to page with layer source. | |
// @include *layersource.bml* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// ==/UserScript== | |
GM_addStyle(" \ | |
#funcIndex{ \ |
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; \ |
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 ); |