Skip to content

Instantly share code, notes, and snippets.

@RaymondLim
Created April 6, 2012 01:25
Show Gist options
  • Save RaymondLim/2315799 to your computer and use it in GitHub Desktop.
Save RaymondLim/2315799 to your computer and use it in GitHub Desktop.
Required files for issue #579
/* CSS Document */
@import url("css2.css");
.transition2 {
-webkit-transition: all 1s linear;
-moz-transition: all 1s linear;
-o-transition: all 1s linear;
transition: all 1s linear;
}
.transition2:hover {
background-color: red;
}
.transition2:focus {
background-color: red;
}
.transition2:target {
background-color: red;
}
/* CSS Document */
.transition3 {
-webkit-transition: all 1s linear;
-moz-transition: all 1s linear;
-o-transition: all 1s linear;
transition: all 1s linear;
}
.transition3:hover {
background-color: red;
}
.transition3:focus {
background-color: red;
}
.textColor {
color: #f00;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment