Skip to content

Instantly share code, notes, and snippets.

View fotan's full-sized avatar

Matt Danskine fotan

View GitHub Profile
hr {
     width: 95%;
     border: 1px solid $mid-green; /* Some browser */
     background: $mid-green; /* Some other browser */
     color: $mid-green; /* IE */
}
hr:after {
    background: url('../images/hr.png') no-repeat top left;
    content: "";
    display: block;
@fotan
fotan / change color on hover.css
Last active August 29, 2015 14:20
CSS - Change color on hover
.color:hover { background:#53a7ea; }
@fotan
fotan / CSS - rotate on hover.css
Last active August 29, 2015 14:20
Rotate on hover
.rotate:hover
{
        -webkit-transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        transform: rotateZ(-30deg);
}
@fotan
fotan / CSS - fade in on hover.css
Last active August 29, 2015 14:20
Fade in on hover
.fade { opacity:0.5; }
.fade:hover { opacity:1; }
@fotan
fotan / CSS - transparent bg color.css
Last active August 29, 2015 14:20
Transparent BG Color
/* Semi-Transparent BG */
/* 255,0,0 = RGB color */
/* 0.5 = opacity.  0.1 - 1 */
background-color:rgba(255,255,255,0.3);
         
/* Semi Transparent BG for IE8.  First 2 numbers are opacity percentage.  Last 6 are hex color. */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#90ffffff, endColorstr=#90ffffff)";
@fotan
fotan / CSS - text offset solid shadow.css
Last active August 29, 2015 14:20
Text offset (solid shadow)
text-shadow: 5px 5px 0px #eee, 7px 7px 0px #707070;
@fotan
fotan / neon text.css
Last active August 29, 2015 14:20
CSS - Neon Text
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
@fotan
fotan / text fire effect.css
Last active August 29, 2015 14:20
CSS - Fire Text
text-shadow: 0 0 20px #fefcc9, 10px -10px 30px #feec85, -20px -20px 40px #ffae34, 20px -40px 50px #ec760c, -20px -60px 60px #cd4606, 0 -80px 70px #973716, 10px -90px 80px #451b0e;
@fotan
fotan / CSS - text shadow.css
Last active August 29, 2015 14:20
Text Shadow
text-shadow: 0.1em 0.1em 0.2em black
@fotan
fotan / css superscript.css
Created May 5, 2015 20:31
CSS Superscript
.super {
     font-size: xx-small;
     vertical-align: super;
}