default.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. background: White;
  5. color: DarkSlateGrey;
  6. font-family: Tahoma, Verdana, sans-serif;
  7. font-size: 10pt;
  8. }
  9. div#main {
  10. margin: 0;
  11. padding: 0 20px 20px;
  12. }
  13. a {
  14. background: transparent;
  15. color: maroon;
  16. text-decoration: underline;
  17. font-weight: bold;
  18. }
  19. h1 {
  20. color: maroon;
  21. font-size: 150%;
  22. font-style: italic;
  23. display: block;
  24. width: 100%;
  25. border-bottom: 1px solid DarkSlateGrey;
  26. }
  27. h1.title {
  28. margin: 0 0 1em;
  29. padding: 10px;
  30. background-color: orange;
  31. color: white;
  32. border-bottom: 4px solid gold;
  33. font-size: 2em;
  34. font-style: normal;
  35. }
  36. table#movies {
  37. margin: 10px;
  38. border-collapse: collapse;
  39. width: 100%;
  40. border-bottom: 2px solid black;
  41. }
  42. table#movies th {
  43. border: 2px solid white;
  44. font-weight: bold;
  45. background-color: wheat;
  46. }
  47. table#movies th, table#movies td {
  48. padding: 4px;
  49. text-align: left;
  50. }
  51. #notice #warning {
  52. background: rosybrown;
  53. margin: 1em 0;
  54. padding: 4px;
  55. }
  56. form label {
  57. display: block;
  58. line-height: 25px;
  59. font-weight: bold;
  60. color: maroon;
  61. }
  62. table#movies th.hilite {
  63. background-color: yellow;
  64. }