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.

94 lines
1.6 KiB

  1. <!-- common.css
  2. body, table, input, textarea {
  3. font-family: Verdana, Helvetica;
  4. font-size: 9pt;
  5. }
  6. body {
  7. border: none;
  8. padding-left: 1%;
  9. }
  10. a {
  11. color: #000000;
  12. text-decoration: none;
  13. }
  14. table.login {
  15. font-size: 9pt;
  16. width: 200pt;
  17. border: outset 1pt;
  18. }
  19. .login {
  20. background-color: #dfdfdf;
  21. }
  22. table.data {
  23. width: 98%;
  24. background-color: #f7f7f7;
  25. border: none;
  26. }
  27. tr {
  28. vertical-align: baseline;
  29. }
  30. td, th {
  31. padding: 1pt;
  32. }
  33. th {
  34. font-weight: bold;
  35. background-color: #b0c4de;
  36. border: outset 1px;
  37. }
  38. td {
  39. border-width: none;
  40. border-style: none;
  41. }
  42. .right {
  43. float: right;
  44. }
  45. .left {
  46. float: left;
  47. }
  48. .title {
  49. font-size: 16pt;
  50. font-weight: bold;
  51. font-style: italic;
  52. }
  53. .label {
  54. font-size: 9pt;
  55. font-weight: bold;
  56. text-align: right;
  57. }
  58. .form {
  59. font-size: 9pt;
  60. }
  61. .header {
  62. background-color: #f7f7f7;
  63. }
  64. .light {
  65. background-color: #efefef;
  66. border-width: 1pt;
  67. border-style: none;
  68. }
  69. .dark {
  70. background-color: #e7e7e7;
  71. border-width: 1pt;
  72. border-style: none;
  73. }
  74. .status {
  75. font-family: Lucida Console;
  76. font-size: 7pt;
  77. background-color: #dfdfdf;
  78. border-width: 1pt;
  79. border-style: none;
  80. }
  81. .boxed {
  82. border-style: solid;
  83. border-width: 1px;
  84. border-color: black;
  85. }
  86. input.small {
  87. font-family: Arial;
  88. font-size: 7pt;
  89. background-color: #e7e7e7;
  90. border-width: 1px;
  91. width: 27pt;
  92. height: 13pt;
  93. }
  94. -->