PageRenderTime 22ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/html/style.css

http://iniparse.googlecode.com/
CSS | 123 lines | 98 code | 22 blank | 3 comment | 0 complexity | d2a0b07e14008b0b55c832277fd4a23f MD5 | raw file
  1. /* All colors are at the beginning */
  2. /* Colors are based on a "My Yahoo" theme */
  3. body, #title, #title A:link, #title A:visited, #title a:hover
  4. {
  5. color: black;
  6. background: #a0b8c8;
  7. }
  8. .box {
  9. color: black;
  10. background: #ffffcc;
  11. }
  12. .boxtitle {
  13. color: black;
  14. background: #dcdcdc;
  15. }
  16. #menu {
  17. color: black;
  18. background: #dcdcdc;
  19. }
  20. /* Colors finished; now for the layout */
  21. body {
  22. margin-left: 10%;
  23. margin-right: 10%;
  24. font-family: sans-serif;
  25. font-size: 0.8em;
  26. }
  27. #title {
  28. text-align: center;
  29. }
  30. #title h1 {
  31. margin-bottom: .3em;
  32. padding-bottom: .2em;
  33. font-size: 1.8em;
  34. letter-spacing: .2em;
  35. border-bottom: 1px solid;
  36. }
  37. #title p {
  38. letter-spacing: .2em;
  39. margin-top: .1em;
  40. margin-bottom: .1em;
  41. }
  42. #title A:link, #title A:visited {
  43. text-decoration: none;
  44. }
  45. #title A:hover {
  46. text-decoration: underline;
  47. }
  48. #menu {
  49. margin-top: 2em;
  50. padding: 0.3em;
  51. text-align: center;
  52. font-weight: bold;
  53. border: 1px solid;
  54. }
  55. #footer {
  56. margin-top: 1em;
  57. padding-right: 0.2em;
  58. padding-left: 0.2em;
  59. font-style: italic;
  60. text-align: center;
  61. }
  62. #footer p {
  63. margin: 0.5em;
  64. }
  65. .box {
  66. margin-top: 2em;
  67. padding: 0em;
  68. border: 1px solid;
  69. }
  70. .boxtitle {
  71. margin: 0;
  72. padding-bottom: 0.1em;
  73. padding-top: 0.2em;
  74. text-align: center;
  75. font-size: 1.3em;
  76. font-weight: bold;
  77. border-bottom: 1px solid;
  78. }
  79. .boxitem {
  80. margin: 1em;
  81. }
  82. ul {
  83. margin-top: 0.2em;
  84. margin-bottom: 0;
  85. }
  86. li {
  87. margin-bottom: 0.1em;
  88. }
  89. .leftfloat {
  90. width: 50%;
  91. float: left;
  92. }
  93. .rightfloat {
  94. width: 50%;
  95. float: right;
  96. }
  97. .clear {
  98. clear: both;
  99. width: 0;
  100. height: 0;
  101. }