Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. /* ----------------------------------------------------------------------------------------------------
  2. ** - Body
  3. ** ----------------------------------------------------------------------------------------------------
  4. */
  5.  
  6. BODY
  7. {
  8. background-color: #b1d2de;
  9. background-image: url(/gfx/layout/lsbg.png);
  10. background-repeat: repeat-x;
  11. margin: 20px 0px 0px 0px;
  12. padding: 0px 0px 0px 0px;
  13. overflow: auto;
  14.  
  15.  
  16. }
  17.  
  18. /* ----------------------------------------------------------------------------------------------------
  19. ** - Header
  20. ** ----------------------------------------------------------------------------------------------------
  21. */
  22.  
  23. H1
  24. {
  25. color: #ffffff;
  26. display: inline;
  27. font-family: Tahoma, Arial, Verdana;
  28. font-size: 10pt;
  29. font-weight: bold;
  30. text-align: center;
  31. background-image: url(/gfx/layout/menubgn.png);
  32. }
  33.  
  34. /* ----------------------------------------------------------------------------------------------------
  35. ** - Text
  36. ** ----------------------------------------------------------------------------------------------------
  37. */
  38.  
  39. P, A, LI, SPAN, LABEL
  40. {
  41. color: #ffffff;
  42. font-family: Tahoma, Arial, Verdana;
  43. font-size: 8pt;
  44. font-weight: normal;
  45. }
  46.  
  47. LABEL.CHECKBOX, LABEL.RADIO, LABEL.LINK
  48. {
  49. cursor: pointer;
  50. /* cursor: hand; */
  51. }
  52.  
  53. /* ----------------------------------------------------------------------------------------------------
  54. ** - List
  55. ** ----------------------------------------------------------------------------------------------------
  56. */
  57.  
  58. UL.CIRCLE, UL.CIRCLE UL
  59. {
  60. list-style-type: circle;
  61. }
  62.  
  63. UL.PLUS, UL.PLUS UL
  64. {
  65. list-style-type: none;
  66. }
  67.  
  68. LI
  69. {
  70. line-height: 8pt;
  71. margin-left: 0px;
  72. padding-left: 0px;
  73. }
  74.  
  75. UL.PLUS LI
  76. {
  77. background-image: url(/gfx/list/plus.gif);
  78. background-repeat: no-repeat;
  79. background-position: left 3px;
  80. padding-left: 16px;
  81. }
  82.  
  83. /* ----------------------------------------------------------------------------------------------------
  84. ** - inline Text
  85. ** ----------------------------------------------------------------------------------------------------
  86. */
  87.  
  88. SPAN.HOT,
  89. SPAN.RED,
  90. SPAN.ERROR
  91. {
  92. color: #cc0000;
  93. font-weight: bold;
  94. }
  95.  
  96. SPAN.GREEN,
  97. SPAN.SUCCESS
  98. {
  99. color: #00A000;
  100. font-weight: bold;
  101. }
  102.  
  103. SPAN.GRAY,
  104. SPAN.UNKNOWN
  105. {
  106. color: #C0C0C0;
  107. font-weight: bold;
  108. }
  109.  
  110. /* ----------------------------------------------------------------------------------------------------
  111. ** - Links
  112. ** ----------------------------------------------------------------------------------------------------
  113. */
  114.  
  115. LABEL.LINK,
  116. A SPAN,
  117. A
  118. {
  119. color: #1b2737;
  120. text-decoration: none;
  121. }
  122.  
  123. LABEL.LINK:hover,
  124. A:hover SPAN,
  125. A:hover
  126. {
  127. color: #274876;
  128. text-decoration: underline;
  129. }
  130.  
  131. /* ----------------------------------------------------------------------------------------------------
  132. ** - Images
  133. ** ----------------------------------------------------------------------------------------------------
  134. */
  135.  
  136. IMG
  137. {
  138. margin: 2px;
  139. }
  140.  
  141. /* ----------------------------------------------------------------------------------------------------
  142. ** - Horizontal Ruler
  143. ** ----------------------------------------------------------------------------------------------------
  144. */
  145.  
  146. HR
  147. {
  148. background-color: #01b2bd;
  149. color: #808080;
  150. border: 2 none;
  151. height: 3px;
  152. font-size: 1px;
  153. line-height: 1px;
  154. clear: both;
  155. display: block;
  156. margin: 5px auto 5px auto;
  157. padding: 0px 0px 0px 0px;
  158. text-align: center;
  159. width: 100%;
  160. }
  161.  
  162. TABLE.BLOCK TR TD HR
  163. {
  164. margin: 0px auto 0px auto;
  165. width: 140px;
  166. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement