inspired by http://dribbble.com/shots/1219202-Drag-Drop-User-Interface
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
img { | |
-moz-transform: scaleX(-1); | |
-o-transform: scaleX(-1); | |
-webkit-transform: scaleX(-1); | |
transform: scaleX(-1); | |
filter: FlipH; | |
-ms-filter: "FlipH"; | |
} |
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
.shadow { | |
-moz-box-shadow: 3px 3px 5px 6px #ccc; | |
-webkit-box-shadow: 3px 3px 5px 6px #ccc; | |
box-shadow: 3px 3px 5px 6px #ccc; | |
} |
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
Sans-Serif | |
Arial, sans-serif; | |
Helvetica, sans-serif; | |
Gill Sans, sans-serif; | |
Lucida, sans-serif; | |
Helvetica Narrow, sans-serif; | |
sans-serif; | |
Serif | |
Times, serif; |
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
Regular text shadow: | |
p { text-shadow: 1px 1px 1px #000; } | |
Multiple shadows: | |
p { text-shadow: 1px 1px 1px #000, 3px 3px 5px blue; } |
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
.rotate { | |
/* Safari */ | |
-webkit-transform: rotate(-90deg); | |
/* Firefox */ | |
-moz-transform: rotate(-90deg); | |
/* IE */ | |
-ms-transform: rotate(-90deg); |
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
.text-shadow (@string: 0 1px 3px rgba(0, 0, 0, 0.25)) { | |
text-shadow: @string; | |
} | |
.box-shadow (@string) { | |
-webkit-box-shadow: @string; | |
-moz-box-shadow: @string; | |
box-shadow: @string; | |
} | |
.drop-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) { | |
-webkit-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha); |
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
For full info please visit - www.antonoffplus.com/15000-words-captcha-library | |
aahing | |
aaliis | |
aarrgh | |
abacas | |
abacus | |
abakas | |
abamps | |
abased |
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
1;United Kingdom;united_kingdom | |
0;Afghanistan;afghanistan | |
0;Albania;albania | |
0;Algeria;algeria | |
0;Andorra;andorra | |
0;Angola;angola | |
0;Antigua and Barbuda;antigua_and_barbuda | |
0;Argentina;argentina | |
0;Armenia;armenia | |
0;Australia;australia |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="style.css"> | |
<script src="http://code.jquery.com/jquery-2.1.1.js"> | |
</script> | |
<script > | |
$(function(){ | |
$('#btnSearch').click(function(){ |
OlderNewer