Quote database webapp
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

style.css 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. body {
  2. margin: 0px 50px;
  3. padding: 0px;
  4. font-family: tahoma, arial, sans-serif;
  5. }
  6. h1 {
  7. margin: 0px;
  8. padding: 3px 10px;
  9. color: #fff;
  10. background-color: #006;
  11. font-size: 2em;
  12. font-family: serif;
  13. }
  14. div#menu {
  15. background-color: #ccc;
  16. padding: 0px;
  17. background-image: url('br.png');
  18. background-position: bottom right;
  19. background-repeat: no-repeat;
  20. height: 40px;
  21. }
  22. div#menu img {
  23. float: left;
  24. }
  25. div#menu a {
  26. color: #339;
  27. padding: 0px 10px;
  28. }
  29. div#menu a:visited {
  30. color: #333;
  31. }
  32. span#links {
  33. float: left;
  34. padding-top: 10px;
  35. }
  36. span#rlinks {
  37. float: right;
  38. padding-top: 10px;
  39. padding-right: 25px;
  40. }
  41. div#content {
  42. padding: 5px 10px;
  43. line-height: 150%;
  44. }
  45. div.oneThird {
  46. width: 30%;
  47. }
  48. div.right {
  49. float: right;
  50. padding-left: 20px;
  51. }
  52. table.form {
  53. border-collapse: collapse;
  54. margin: 0px 0px 10px 0px;
  55. }
  56. table.form td, table.form th {
  57. border: 1px solid #666;
  58. padding: 5px;
  59. }
  60. table.form th {
  61. background-color: #ccc;
  62. text-align: right;
  63. }
  64. table.form input {
  65. border: 0px;
  66. width: 200px;
  67. }
  68. div.quote {
  69. margin: 0px 10px;
  70. padding: 5px 10px 5px;
  71. }
  72. div.quote p { margin: 0px 0px 5px 0px; }
  73. div.odd {
  74. background-color: #ddd;
  75. border-top: 10px solid #fff;
  76. border-bottom: 10px solid #fff;
  77. }
  78. div.quotebody {
  79. font-size: small;
  80. }
  81. .rate {
  82. float: right;
  83. }
  84. div.stats em {
  85. font-style: normal;
  86. font-weight: bold;
  87. }
  88. div.nav {
  89. margin: 10px;
  90. padding-left: 10px;
  91. padding-bottom: 20px;
  92. }
  93. p.tags {
  94. padding-left: 20px;
  95. font-size: small;
  96. background: url('tag.png') no-repeat left center;
  97. }