banner.css 952 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body {
  2. overflow: hidden;
  3. margin-top: 4px;
  4. margin-left: 4px;
  5. margin-bottom: 0px;
  6. margin-right: 0px;
  7. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.5, rgb(253,
  8. 237, 166) ), color-stop(1, rgb(250, 229, 146) ) );
  9. }
  10. .link {
  11. color: black;
  12. font-family: Arial;
  13. text-decoration: none;
  14. font-size: 11pt;
  15. padding-left: 20px;
  16. }
  17. .link:hover {
  18. text-decoration: underline;
  19. }
  20. .link::before {
  21. background-image: url(../resources/icon_19_save.png);
  22. height: 19px;
  23. width: 19px;
  24. content: " ";
  25. display: inline-block;
  26. position: relative;
  27. top: 3px;
  28. left: -14px;
  29. }
  30. .close-button {
  31. text-shadow: 1px 1px #333;
  32. display: inline-block;
  33. height: 14px;
  34. width: 14px;
  35. background-image: url(../resources/icon_close.png);
  36. font-family: sans-serif;
  37. font-weight: bold;
  38. opacity: .4;
  39. position: absolute;
  40. right: 6px;
  41. top: 10px;
  42. cursor: default;
  43. }
  44. .close-button:hover {
  45. -webkit-transition: opacity .2s ease-out;
  46. opacity: 1;
  47. }