Advertisement
salmancreation

Transition Property

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