Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. art-blockheader
  2. {
  3. position: relative;
  4. z-index: 0;
  5. height: 29px;
  6. color: #163F55;
  7. font-style: normal;
  8. font-weight: bold;
  9. font-size: 13px;
  10. letter-spacing: 0;
  11. text-transform: uppercase;
  12. margin:0;
  13. padding: 0 29px 0 10px;
  14. white-space: nowrap;
  15. line-height: 29px;
  16. background-image: url('../images/blockheaderbullet.png');
  17. background-repeat: no-repeat;
  18. background-position: 95% 50%;
  19. /* BORDER RADIUS */
  20. -webkit-border-top-left-radius: 10px;
  21. -webkit-border-top-right-radius: 10px;
  22. -moz-border-radius-topleft: 10px;
  23. -moz-border-radius-topright: 10px;
  24. border-top-left-radius: 10px;
  25. border-top-right-radius: 10px;
  26. /* BACKGROUND COLOR/GRADIENT */
  27. background: linear-gradient( top, #a2cfe6, #4690b5 ); /* W3C Standard */
  28. background: -webkit-gradient(linear, left top, left bottom, from(#a2cfe6), to(#4690b5) ); /* for Chrome + Safari */
  29. background: -moz-linear-gradient( top, #a2cfe6, #4690b5); /* for Firefox */
  30. /* fallback flat color
  31. Caso não funcione o gradiente, fixa uma cor no fundo */
  32. background-color: #a2cfe6;
  33. /* SHADOW */
  34. -moz-box-shadow: 0px 1px 1px #aaaaaa;
  35. -webkit-box-shadow: 0px 1px 1px #aaaaaa;
  36. box-shadow: 0px 1px 1px #aaaaaa;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement