Skip to content

Instantly share code, notes, and snippets.

@Frique
Frique / CSS: Transitions.css
Created March 12, 2013 07:55
CSS: Transitions
-webkit-transition: all 0.4s ease-out;
-moz-transition: all 0.4s ease-out;
-o-transition: all 0.4s ease-out;
-ms-transition: all 0.4s ease-out;
transition: all 0.4s ease-out;
@Frique
Frique / CSS: Transform: Rotate.css
Created March 12, 2013 07:53
CSS: Transform: Rotate
-ms-transform: rotate(-1deg);
-moz-transform: rotate(-1deg);
-webkit-transform: rotate(-1deg);
-o-transform: rotate(-1deg);
transform: rotate(-1deg);
@Frique
Frique / CSS: box-sizing: border-box.css
Created March 12, 2013 07:50
CSS: box-sizing: border-box
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
@Frique
Frique / CSS: Input placeholder styling.css
Last active December 14, 2015 19:59
CSS: Input placeholder styling
::-webkit-input-placeholder{
font-style: italic;
}
:-moz-placeholder{
font-style: italic;
}
@Frique
Frique / CSS: opacity.css
Last active December 14, 2015 19:59
CSS: opacity
zoom: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
@Frique
Frique / CSS: border opacity.css
Last active December 14, 2015 19:59
CSS: border opacity
border: 20px solid rgba(0,0,0, 0.3);
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;