ticker-style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* Ticker Styling */
  2. .ticker-wrapper.has-js {
  3. margin: 0px;
  4. padding: 0px;
  5. width: 100%;
  6. margin-left: 180px;
  7. height: auto;
  8. display: block;
  9. background-color: transparent;
  10. }
  11. .ticker {
  12. width: 879px;
  13. height: 30px;
  14. display: block;
  15. position: relative;
  16. overflow: hidden;
  17. background-color: transparent;
  18. }
  19. .ticker-title {
  20. padding-top: 9px;
  21. color: #990000;
  22. font-weight: bold;
  23. background-color: transparent;
  24. text-transform: uppercase;
  25. }
  26. .ticker-content {
  27. margin: 0px;
  28. padding-top: 9px;
  29. position: absolute;
  30. color: #1F527B;
  31. font-weight: bold;
  32. background-color: transparent;
  33. overflow: hidden;
  34. white-space: nowrap;
  35. line-height: 1.2em;
  36. left: 0 !important;
  37. }
  38. .ticker-content:focus {
  39. none;
  40. }
  41. .ticker-content a {
  42. text-decoration: none;
  43. color: #1F527B;
  44. }
  45. .ticker-content a:hover {
  46. text-decoration: underline;
  47. color: #0D3059;
  48. }
  49. .ticker-swipe {
  50. padding-top: 9px;
  51. position: absolute;
  52. top: 0px;
  53. background-color: #fff;
  54. display: block;
  55. width: 800px;
  56. height: 23px;
  57. }
  58. .ticker-swipe span {
  59. margin-left: 1px;
  60. background-color: #fff;
  61. height: 12px;
  62. width: 7px;
  63. display: block;
  64. }
  65. .ticker-controls {
  66. padding: 0px;
  67. list-style-type: none;
  68. float: left;
  69. }
  70. .ticker-controls li {
  71. padding: 0px;
  72. margin-left: 4px;
  73. float: left;
  74. cursor: pointer;
  75. height: 20px;
  76. width: 20px;
  77. display: block;
  78. }
  79. .js-hidden {
  80. display: none;
  81. }
  82. .no-js-news {
  83. padding: 10px 0px 0px 45px;
  84. color: #F8F0DB;
  85. }
  86. .left .ticker-swipe {
  87. /*left: 80px;*/
  88. }
  89. .left .ticker-controls, .left .ticker-content, .left .ticker-title, .left .ticker {
  90. float: left;
  91. }
  92. .left .ticker-controls {
  93. padding-left: 6px;
  94. }
  95. .right .ticker-swipe {
  96. /*right: 80px;*/
  97. }
  98. .right .ticker-controls, .right .ticker-content, .right .ticker-title, .right .ticker {
  99. float: right;
  100. }
  101. .right .ticker-controls {
  102. padding-right: 6px;
  103. }