dialogbase.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*弹出对话框页面样式组件
  2. */
  3. /*reset
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, font, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td {
  14. margin: 0;
  15. padding: 0;
  16. outline: 0;
  17. font-size: 100%;
  18. }
  19. body {
  20. line-height: 1;
  21. }
  22. ol, ul {
  23. list-style: none;
  24. }
  25. blockquote, q {
  26. quotes: none;
  27. }
  28. ins {
  29. text-decoration: none;
  30. }
  31. del {
  32. text-decoration: line-through;
  33. }
  34. table {
  35. border-collapse: collapse;
  36. border-spacing: 0;
  37. }
  38. legend {
  39. padding: 0 5px;
  40. }
  41. /*module
  42. */
  43. body {
  44. background-color: #fff;
  45. font: 12px/1.5 sans-serif, "宋体", "Arial Narrow", HELVETICA;
  46. color: #646464;
  47. }
  48. /*tab*/
  49. .tabhead {
  50. position: relative;
  51. z-index: 10;
  52. }
  53. .tabhead span {
  54. display: inline-block;
  55. padding: 0 5px;
  56. height: 29px;
  57. border: 1px solid #ccc;
  58. border-bottom: none;
  59. text-align: center;
  60. line-height: 29px;
  61. cursor: pointer;
  62. *margin-right: 5px;
  63. }
  64. .tabhead span.focus {
  65. height: 30px;
  66. border-bottom: none;
  67. background: #fff;
  68. }
  69. .tabbody {
  70. position: relative;
  71. top: -1px;
  72. margin: 0 auto;
  73. border: 1px solid #ccc;
  74. }
  75. /*button*/
  76. a.button {
  77. display: block;
  78. text-align: center;
  79. line-height: 24px;
  80. text-decoration: none;
  81. height: 24px;
  82. width: 95px;
  83. border: 0;
  84. color: #838383;
  85. }
  86. a.button:hover {
  87. background-position: 0 -30px;
  88. }