Guest User

Untitled

a guest
Jan 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. /*buttons styles*/
  2. a.ucf-button { /* right part short sliding image */
  3. background: transparent url('/frameworkimages/ucf-button-right.png') no-repeat scroll center right;
  4. display: block;
  5. float: left;
  6. height: 25px; /* change value this according button image height */
  7. padding-right: 9px; /* change this value according right image width */
  8. /* font properties */
  9. text-decoration: none;
  10. color: black;
  11. font-family: Arial, Helvetica, sans-serif;
  12. font-size: 12px;
  13. font-weight: bold;
  14. outline-style: none;
  15. outline-width: 0;
  16. }
  17.  
  18. a.ucf-button span { /* left part long image */
  19. background: transparent url('/frameworkimages/ucf-button-left.png') no-repeat scroll center left;
  20. display: block;
  21. line-height: 13px;
  22. padding: 6px 0 6px 9px; /* change this value according to button height and to right image width */
  23. outline-style: none;
  24. outline-width: 0;
  25. }
  26. /* buttons hover styles */
  27. a.ucf-button:hover span {
  28. background: transparent url('/frameworkimages/ucf-button-left.png') no-repeat scroll bottom left;
  29. color:white;
  30. }
  31. a.ucf-button:hover {
  32. background: transparent url('/frameworkimages/ucf-button-right.png') no-repeat scroll bottom right;
  33. }
Add Comment
Please, Sign In to add comment