Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 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: #cccccc;
  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: #ff0000;
  93. font-weight: bold;
  94. text-decoration: blink;
  95. }
  96.  
  97. SPAN.GREEN,
  98. SPAN.SUCCESS
  99. {
  100. color: #00A000;
  101. font-weight: bold;
  102. }
  103.  
  104. SPAN.GRAY,
  105. SPAN.UNKNOWN
  106. {
  107. color: #C0C0C0;
  108. font-weight: bold;
  109. }
  110.  
  111. /* ----------------------------------------------------------------------------------------------------
  112. ** - Links
  113. ** ----------------------------------------------------------------------------------------------------
  114. */
  115.  
  116. LABEL.LINK,
  117. A SPAN,
  118. A
  119. {
  120. color: #FFFFFF;
  121. text-decoration: none;
  122. }
  123.  
  124. LABEL.LINK:hover,
  125. A:hover SPAN,
  126. A:hover
  127. {
  128. color: #24ff00;
  129. text-decoration: underline;
  130. }
  131.  
  132. /* ----------------------------------------------------------------------------------------------------
  133. ** - Images
  134. ** ----------------------------------------------------------------------------------------------------
  135. */
  136.  
  137. IMG
  138. {
  139. margin: 2px;
  140. }
  141.  
  142. /* ----------------------------------------------------------------------------------------------------
  143. ** - Horizontal Ruler
  144. ** ----------------------------------------------------------------------------------------------------
  145. */
  146.  
  147. HR
  148. {
  149. background-color: #01b2bd;
  150. color: #808080;
  151. border: 2 none;
  152. height: 3px;
  153. font-size: 1px;
  154. line-height: 1px;
  155. clear: both;
  156. display: block;
  157. margin: 5px auto 5px auto;
  158. padding: 0px 0px 0px 0px;
  159. text-align: center;
  160. width: 100%;
  161. }
  162.  
  163. TABLE.BLOCK TR TD HR
  164. {
  165. margin: 0px auto 0px auto;
  166. width: 140px;
  167. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement