Advertisement
salmancreation

Transition css3

Dec 8th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.47 KB | None | 0 0
  1. <div class="box">Box</div>
  2.  
  3.  
  4.  
  5.  
  6. body {
  7. color: #fff;
  8. font: 600 14px/24px "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif;
  9. }
  10. .box {
  11. background: #2db34a;
  12. border-radius: 6px;
  13. cursor: pointer;
  14. height: 95px;
  15. line-height: 95px;
  16. text-align: center;
  17. transition-property: background;
  18. transition-duration: 1s;
  19. transition-timing-function: linear;
  20. width: 95px;
  21. }
  22. .box:hover {
  23. background: #ff7b29;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement