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 Dribbble Lazy Loader | |
| // @description A lazy loader (or infinity scroller) for Dribbble, the behaves similar to the Forrst lazy loader. | |
| // @include http://www.dribbble.com/* | |
| // @include http://dribbble.com/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js | |
| // ==/UserScript== | |
| // a function that loads jQuery and calls a callback function when jQuery has finished loading | |
| function addJQuery(callback) { |
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
| body, p, div, form, label, input{ | |
| /* some reset */ | |
| font-family:Verdana, Geneva, sans-serif; | |
| font-size:small; | |
| color:#fff; | |
| background: #3a5875 | |
| } | |
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
| /* some reset */ | |
| body{ | |
| font-family:Verdana, Geneva, sans-serif; | |
| font-size:small; | |
| color:#fff; | |
| background: #3a5875 | |
| } | |
| /* Notice wrapper with Single Image */ | |
| .notice-wrap { |
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
| /* some reset */ | |
| body{font-family:Verdana, Geneva, sans-serif; font-size:small;color:#fff;background: #3a5875} | |
| /* Notice wrapper with Single Image */ | |
| .notice-wrap { | |
| margin-top: 10px; padding: 0 .7em; | |
| -moz-border-radius: 4px; | |
| -webkit-border-radius: 4px; | |
| border-radius: 4px; |
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
| /* some reset */ | |
| body{font-family:Verdana, Geneva, sans-serif; font-size:small;color:#fff;background: #3a5875} | |
| /* Notice wrapper with Single Image */ | |
| .notice-wrap { | |
| margin-top: 10px; padding: 0 .7em; | |
| -moz-border-radius: 4px; | |
| -webkit-border-radius: 4px; | |
| border-radius: 4px; |
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
| body { | |
| background: url("http://f.cl.ly/items/1P1B36222g1t462j3W3Q/cd4.png"); | |
| } | |
| input[type="text"] {outline: none;} | |
| /* Email subscribe Modal Window */ | |
| #modal-mask { | |
| position: fixed; | |
| width: 100%; |
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
| body { | |
| background: url("http://f.cl.ly/items/1P1B36222g1t462j3W3Q/cd4.png"); | |
| } | |
| input[type="text"] {outline: none;} | |
| /* Email subscribe Modal Window */ | |
| #modal-mask { | |
| position: fixed; | |
| width: 100%; |
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 | |
| require("postmark.php"); | |
| $postmark = new Postmark("your-api-key","from-email","optional-reply-to-address"); | |
| $result = $postmark->to("reciver@example.com") | |
| ->subject("Email Subject") | |
| ->plain_message("This is a plain text message.") | |
| ->attachment('File.pdf', $file_as_string, 'application/pdf') |
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
| body{ | |
| background: #EDECE8 url("http://www.codedevelopr.com/assets/images/bg.png") repeat; | |
| } | |
| #sidebar { | |
| width: 290px; | |
| margin-left: 40px; | |
| font-size: .85em; | |
| } |
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
| body{ | |
| background: #EDECE8 url("http://www.codedevelopr.com/assets/images/bg.png") repeat; | |
| } | |
| #sidebar { | |
| width: 290px; | |
| margin-left: 40px; | |
| font-size: .85em; | |
| } |