JSP Addressbook app for VIP Express (circa Jun 2002)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

185 lines
3.0 KiB

  1. <!-- common.css
  2. body {
  3. font-family: Helvetica;
  4. margin-left: 3%;
  5. margin-right: 3%;
  6. }
  7. a {
  8. color: Black;
  9. text-decoration: none;
  10. }
  11. p {
  12. font-family: Helvetica;
  13. margin-top: none;
  14. margin-bottom: none;
  15. padding: none 3pt;
  16. }
  17. h1,h2,h3,h4,h5,h6 {
  18. font-family: Helvetica;
  19. }
  20. .title {
  21. font-size: 18pt;
  22. font-style: italic;
  23. font-weight: bold;
  24. }
  25. .boxed {
  26. background-color: transparent;
  27. border-color: black;
  28. border-width: 1px;
  29. border-style: solid;
  30. }
  31. h1 {
  32. font-size: 11pt;
  33. font-weight: bold;
  34. background-color: #d3d3d3;
  35. border: outset 1pt;
  36. }
  37. h3 {
  38. font-size: 9pt;
  39. font-weight: bold;
  40. background-color: #b0c4de;
  41. border: outset 1pt;
  42. }
  43. p.title {
  44. background-color: #cccccc;
  45. font-size: 12pt;
  46. font-weight: bold;
  47. border: outset 1pt;
  48. }
  49. p.heading {
  50. background-color: #b0c4de;
  51. font-size: 9pt;
  52. font-weight: bold;
  53. border: outset 1pt;
  54. }
  55. p.content {
  56. font-family: Helvetica;
  57. font-size: 9pt;
  58. }
  59. p.list {
  60. margin-top: -1em;
  61. margin-left: 3%;
  62. }
  63. form {
  64. font-family: Helvetica;
  65. font-size: 9pt;
  66. }
  67. table {
  68. font-family: Helvetica;
  69. font-size: 9pt;
  70. background-color: #d3d3d3;
  71. border-style: outset;
  72. border-width: 1pt;
  73. margin-left: 2%;
  74. width: 96%;
  75. min-width: 740px;
  76. }
  77. table.entry, table.data {
  78. border-style: none;
  79. background-color: #dedede;
  80. }
  81. table.hidden {
  82. background-color: #f0f0f0;
  83. border-width: none;
  84. border-style: none;
  85. margin-left: 3%;
  86. width: 94%;
  87. vertical-align: bottom;
  88. }
  89. table.third {
  90. margin-left: 33%;
  91. width: 34%;
  92. background-color: inherit;
  93. border-style: inset;
  94. }
  95. table.login {
  96. margin-left: 35%;
  97. width: 30%;
  98. min-width: 200px;
  99. border-width: 1pt;
  100. border-style: outset;
  101. }
  102. thead,th {
  103. font-weight: bold;
  104. border-width: 1pt;
  105. border-style: outset;
  106. padding: inherit;
  107. background-color: #b0c4de;
  108. }
  109. tr {
  110. font-weight: normal;
  111. border-width: inherit;
  112. border-style: none;
  113. padding: inherit;
  114. }
  115. td {
  116. border-width: inherit;
  117. border-style: inherit;
  118. }
  119. td.status {
  120. font-family: Helvetica;
  121. font-size: 7pt;
  122. background-color: #dadada;
  123. border-style: none;
  124. border-width: 1px;
  125. }
  126. .label {
  127. font-weight: bold;
  128. padding-left: 9pt;
  129. text-align: right;
  130. }
  131. .field {
  132. font-weight: normal;
  133. padding-right: 9pt;
  134. padding-top: 2pt;
  135. padding-bottom: 2pt;
  136. font-size: 8pt;
  137. text-align: left;
  138. }
  139. .inset {
  140. border-style: inset;
  141. border-width: 1pt;
  142. }
  143. .outset {
  144. border-style: outset;
  145. border-width: 1pt;
  146. }
  147. .center {
  148. text-align: center;
  149. }
  150. .light {
  151. background-color: #f0f0f0;
  152. }
  153. .dark {
  154. background-color: #e5e5e5;
  155. }
  156. -->