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
## EXPIRES CACHING ## | |
<IfModule mod_expires.c> | |
ExpiresActive On | |
ExpiresByType image/jpg "access 1 year" | |
ExpiresByType image/jpeg "access 1 year" | |
ExpiresByType image/gif "access 1 year" | |
ExpiresByType image/png "access 1 year" | |
ExpiresByType text/css "access 1 month" | |
ExpiresByType application/pdf "access 1 month" | |
ExpiresByType text/x-javascript "access 1 month" |
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
# Ignore everything in the root except the "wp-content" directory. | |
/* | |
!.gitignore | |
!wp-content/ | |
# Ignore everything in the "wp-content" directory, except the "plugins" and "themes" directories. | |
wp-content/* | |
!wp-content/plugins/ | |
!wp-content/themes/ |
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
<canvas id="canvas" width=900 height=700></canvas> | |
var canvas = document.getElementById("canvas"); | |
var ctx = canvas.getContext('2d') | |
var Tab = function(id, x, y, width, height, text, color) { | |
this.id = id; | |
// defaults can be changed after object creation |
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(){ |
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
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
.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
.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
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
Sans-Serif | |
Arial, sans-serif; | |
Helvetica, sans-serif; | |
Gill Sans, sans-serif; | |
Lucida, sans-serif; | |
Helvetica Narrow, sans-serif; | |
sans-serif; | |
Serif | |
Times, serif; |