htmlview_master_css.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. html {
  2. display: block;
  3. height:100%;
  4. width:100%;
  5. position: relative;
  6. }
  7. head {
  8. display: none
  9. }
  10. meta {
  11. display: none
  12. }
  13. title {
  14. display: none
  15. }
  16. link {
  17. display: none
  18. }
  19. style {
  20. display: none
  21. }
  22. script {
  23. display: none
  24. }
  25. body {
  26. display:block;
  27. /* margin:8px; */
  28. height:100%;
  29. width:100%;
  30. }
  31. p {
  32. display:block;
  33. margin-top:1em;
  34. margin-bottom:1em;
  35. }
  36. b, strong {
  37. display:inline;
  38. font-weight:bold;
  39. }
  40. i, em {
  41. display:inline;
  42. font-style:italic;
  43. }
  44. center
  45. {
  46. text-align:center;
  47. display:block;
  48. }
  49. a:link
  50. {
  51. text-decoration: underline;
  52. color: #00f;
  53. cursor: pointer;
  54. }
  55. h1, h2, h3, h4, h5, h6, div {
  56. display:block;
  57. }
  58. h1 {
  59. font-weight:bold;
  60. margin-top:0.67em;
  61. margin-bottom:0.67em;
  62. font-size: 2em;
  63. }
  64. h2 {
  65. font-weight:bold;
  66. margin-top:0.83em;
  67. margin-bottom:0.83em;
  68. font-size: 1.5em;
  69. }
  70. h3 {
  71. font-weight:bold;
  72. margin-top:1em;
  73. margin-bottom:1em;
  74. font-size:1.17em;
  75. }
  76. h4 {
  77. font-weight:bold;
  78. margin-top:1.33em;
  79. margin-bottom:1.33em
  80. }
  81. h5 {
  82. font-weight:bold;
  83. margin-top:1.67em;
  84. margin-bottom:1.67em;
  85. font-size:.83em;
  86. }
  87. h6 {
  88. font-weight:bold;
  89. margin-top:2.33em;
  90. margin-bottom:2.33em;
  91. font-size:.67em;
  92. }
  93. br {
  94. display:inline-block;
  95. }
  96. br[clear="all"]
  97. {
  98. clear:both;
  99. }
  100. br[clear="left"]
  101. {
  102. clear:left;
  103. }
  104. br[clear="right"]
  105. {
  106. clear:right;
  107. }
  108. span {
  109. display:inline
  110. }
  111. img {
  112. display: inline-block;
  113. }
  114. img[align="right"]
  115. {
  116. float: right;
  117. }
  118. img[align="left"]
  119. {
  120. float: left;
  121. }
  122. hr {
  123. display: block;
  124. margin-top: 0.5em;
  125. margin-bottom: 0.5em;
  126. margin-left: auto;
  127. margin-right: auto;
  128. border-style: inset;
  129. border-width: 1px
  130. }
  131. /***************** TABLES ********************/
  132. table {
  133. display: table;
  134. border-style: solid;
  135. border-collapse: separate;
  136. border-spacing: 2px;
  137. border-top-color:gray;
  138. border-left-color:gray;
  139. border-bottom-color:black;
  140. border-right-color:black;
  141. }
  142. tbody, tfoot, thead {
  143. display:table-row-group;
  144. vertical-align:middle;
  145. }
  146. tr {
  147. display: table-row;
  148. vertical-align: inherit;
  149. border-color: inherit;
  150. }
  151. td, th {
  152. display: table-cell;
  153. vertical-align: inherit;
  154. border-width:1px;
  155. padding:1px;
  156. }
  157. th {
  158. font-weight: bold;
  159. }
  160. table[border] {
  161. border-style:solid;
  162. }
  163. table[border|=0] {
  164. border-style:none;
  165. }
  166. table[border] td, table[border] th {
  167. border-style:solid;
  168. border-top-color:black;
  169. border-left-color:black;
  170. border-bottom-color:gray;
  171. border-right-color:gray;
  172. }
  173. table[border|=0] td, table[border|=0] th {
  174. border-style:none;
  175. }
  176. caption {
  177. display: table-caption;
  178. }
  179. td[nowrap], th[nowrap] {
  180. white-space:nowrap;
  181. }
  182. tt, code, kbd, samp {
  183. font-family: monospace
  184. }
  185. pre, xmp, plaintext, listing {
  186. display: block;
  187. font-family: monospace;
  188. white-space: pre;
  189. margin: 1em 0
  190. }
  191. /***************** LISTS ********************/
  192. ul, menu, dir {
  193. display: block;
  194. list-style-type: disc;
  195. margin-top: 0;
  196. margin-bottom: 0;
  197. margin-left: 0;
  198. margin-right: 0;
  199. padding-left: 40px
  200. }
  201. ol {
  202. display: block;
  203. list-style-type: decimal;
  204. margin-top: 0;
  205. margin-bottom: 0;
  206. margin-left: 0;
  207. margin-right: 0;
  208. padding-left: 40px
  209. }
  210. li {
  211. display: list-item;
  212. }
  213. ul ul, ol ul {
  214. list-style-type: circle;
  215. }
  216. ol ol ul, ol ul ul, ul ol ul, ul ul ul {
  217. list-style-type: square;
  218. }
  219. dd {
  220. display: block;
  221. margin-left: 40px;
  222. }
  223. dl {
  224. display: block;
  225. margin-top: 1em;
  226. margin-bottom: 1em;
  227. margin-left: 0;
  228. margin-right: 0;
  229. }
  230. dt {
  231. display: block;
  232. }
  233. ol ul, ul ol, ul ul, ol ol {
  234. margin-top: 0;
  235. margin-bottom: 0
  236. }
  237. blockquote {
  238. display: block;
  239. margin-top: 1em;
  240. margin-bottom: 1em;
  241. margin-left: 40px;
  242. margin-left: 40px;
  243. }
  244. /*********** FORM ELEMENTS ************/
  245. form {
  246. display: block;
  247. margin-top: 0em;
  248. }
  249. option {
  250. display: none;
  251. }
  252. input, textarea, keygen, select, button, isindex {
  253. margin: 0em;
  254. color: initial;
  255. line-height: normal;
  256. text-transform: none;
  257. text-indent: 0;
  258. text-shadow: none;
  259. display: inline-block;
  260. }
  261. input[type="hidden"] {
  262. display: none;
  263. }
  264. article, aside, footer, header, hgroup, nav, section
  265. {
  266. display: block;
  267. }