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
/* animate, transform, keyframe use and the associated vendor prefixes */ | |
.letter-container h2 a span:nth-child(even) { | |
-webkit-transform: rotate(3deg) translateZ(0); /* apparently that Z stuff is needed for webkit browsers like chrome */ | |
-moz-transform: rotate(3deg); | |
-o-transform: rotate(3deg); | |
-ms-transform: rotate(3deg); | |
transform: rotate(3deg); |
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
/*Transparent pattern placed over an image, like we see on the bootstrap homepage: http://twitter.github.com/bootstrap/index.html*/ | |
div { | |
width: 200px; | |
height: 200px; | |
display: block; | |
position: relative; | |
background: url(images/background-image.png); | |
} |
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
/* Clear and Clearfix CSS classes */ | |
.clear { | |
clear: both; | |
} | |
.clearfix:after { | |
display: block; | |
clear: both; | |
content: ""; |
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
@media (max-width: 1199px) { | |
} | |
@media (max-width: 991px) { | |
} | |
@media (max-width: 767px) { |
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
/* Fade in Text Keyframe Animation CSS */ | |
.fade-in-left { | |
-webkit-animation: fadeinleft 600ms ease-in-out; | |
-moz-animation: fadeinleft 600ms ease-in-out; | |
-o-animation: fadeinleft 600ms ease-in-out; | |
-ms-animation: fadeinleft 600ms ease-in-out; | |
animation: fadeinleft 600ms ease-in-out; | |
} |
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
$("<h1>", { | |
text: 'This is just practice yo, ignore it son', | |
class: 'what up yo', | |
id: 'in the house', | |
name: 'what what', | |
type: 'submit' | |
}).appendTo(".container"); |
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
// view source here: http://stackoverflow.com/questions/5632380/settimeout-solution-on-twitter | |
// basically, clearing a settimeout everytime the user scrolls, so the action isn't actually executed | |
//until the user stops scrolling | |
var $clear = null; | |
$(window).on('scroll',function() { | |
var $h2Span = $('.portfolio-page .top-content h2 span'); | |
$h2Span.addClass('dotted-line'); |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> | |
RedirectMatch 301 ^/nba/.*$ http://oddsfather.com/ |
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
<!-- Gravity Forms Column Breakpoint, for breaking the ul and creating a second one in the middle of the form --> | |
</li> | |
</ul> | |
<ul class="gform_fields top_label description_below"> |