db.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /*
  2. db.css by Bill Weinman <http://bw.org/contact/>
  3. for jurl database
  4. Copyright (c) 2010-2017 The BearHeart Group, LLC
  5. version of 2017-03-09
  6. */
  7. body {
  8. font-family: tahoma, sans-serif; /* default page font */
  9. background: #fff;
  10. margin: 0; /* shorthand for all margins = 0 */
  11. padding: 0; /* no padding */
  12. }
  13. /* reasonable margin defaults */
  14. p, h1, h2, h3, h4, h5, h6, li {
  15. margin: 1ex 0;
  16. }
  17. #content {
  18. width: 780px;
  19. margin: 1em auto 0;
  20. border: solid 1px #666;
  21. padding: 0 10px;
  22. }
  23. p.message {
  24. font-size: 90%;
  25. border: solid 1px #c66;
  26. padding: 1px 3px;
  27. background-color: #ffe;
  28. }
  29. p.error {
  30. font-size: 90%;
  31. background-color: #f66;
  32. color: white;
  33. border: solid 1px #f66;
  34. padding: 1px 3px;
  35. }
  36. .small {
  37. font-size: 80%;
  38. }
  39. h1 {
  40. margin: 0;
  41. font-size: 16pt;
  42. color: #448;
  43. }
  44. h2 {
  45. margin: 0;
  46. font-size: 13pt;
  47. color: #448;
  48. }
  49. #content input[type=text], #content textarea {
  50. font-family: tahoma, sans-serif;
  51. font-size: 85%;
  52. width: 780px;
  53. }
  54. #content textarea {
  55. font-family: tahoma, sans-serif;
  56. font-size: 85%;
  57. height: 100px;
  58. }
  59. #content input.formSubmit {
  60. margin-top: 1em;
  61. }
  62. /* === recline form === */
  63. div#reclist {
  64. margin-top: 20px;
  65. border-top: 1px solid #933;
  66. }
  67. div.recline {
  68. font-size: 75%;
  69. }
  70. .recline table {
  71. border-collapse: collapse;
  72. }
  73. .recline td {
  74. vertical-align: middle;
  75. padding: 0 3px;
  76. margin: 0;
  77. }
  78. .recline div.nowrap {
  79. white-space: nowrap;
  80. overflow: hidden;
  81. }
  82. div.rlshortURL, div.rltargetURL {
  83. background-color: #eef;
  84. padding: 1px 3px;
  85. }
  86. div.rltargetURL {
  87. width: 500px;
  88. }
  89. div.rlshortURL {
  90. width: 150px;
  91. }
  92. input.edit { color: #090 }
  93. input.delete { color: #900 }
  94. /* ----- paging ----- */
  95. div.nextprev p {
  96. font-size: 75%;
  97. text-align: center;
  98. color: #333;
  99. }
  100. /* this is for bare numbers */
  101. div.nextprev span.n {
  102. margin: 0 5px;
  103. }
  104. div.nextprev a {
  105. color: #900;
  106. text-decoration: none;
  107. padding: 0 5px;
  108. border-bottom: 1px solid white;
  109. }
  110. div.nextprev a:hover {
  111. border-bottom: 1px solid #009;
  112. }
  113. /* ----- footer ----- */
  114. #copyright {
  115. width: 800px;
  116. margin: 1em auto;
  117. color: #999;
  118. padding: 0;
  119. }
  120. #copyright p {
  121. font-size: 65%;
  122. text-align: right;
  123. margin: 0;
  124. padding: 0;
  125. }
  126. #copyright a {
  127. text-decoration: none;
  128. color: #96c;
  129. }
  130. #copyright a:hover {
  131. text-decoration: underline;
  132. }