default.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /* backward compatibility for new HTML5 tags */
  2. article, aside, figure, footer, header, hgroup, menu, nav, section { display:block; }
  3. body {
  4. margin: 0;
  5. background-color: rgba(62, 102, 125, 1);
  6. background-image: url("images/background.jpg");
  7. color: rgba(0, 0, 0, 1);
  8. line-height: 1.5em;
  9. max-width: 100%;
  10. font-family: 'Helvetica Neue', Helvetica, Verdana, sans-serif;
  11. }
  12. aside.screenshots {
  13. float: right;
  14. width: 210px;
  15. text-align: center;
  16. margin: 10px;
  17. padding: 1em;
  18. }
  19. #page {
  20. background: rgba(255, 255, 255, 1);
  21. max-width: 960px;
  22. margin: 0 auto;
  23. box-shadow: 0 0 64px rgba(0, 0, 0, 1);
  24. }
  25. #title {
  26. text-align: center;
  27. }
  28. h1 {
  29. margin: 0;
  30. padding: 0;
  31. display: block;
  32. width: 100%;
  33. }
  34. h1 img {
  35. display: block;
  36. margin: 0;
  37. padding: 0;
  38. width: 100%;
  39. }
  40. #pagebox {
  41. margin: 0;
  42. padding: 0 0 1em 0;
  43. width: 100%;
  44. background-image: url("images/topshadow.png"), url("images/bottomshadow.png");
  45. background-position: top, bottom;
  46. background-repeat: repeat-x, repeat-x;
  47. overflow: auto;
  48. }
  49. #pagebody {
  50. margin: 1em 5em;
  51. color: rgba(0, 0, 0, 1);
  52. }
  53. .screenshotpage {
  54. text-align: center;
  55. color: rgba(255, 255, 255, 1);
  56. }
  57. #pagebody ul {
  58. display:table;
  59. }
  60. #pagebody li {
  61. text-align: left;
  62. }
  63. #footer {
  64. background-color: rgba(25, 70, 100, 1);
  65. line-height: 125%;
  66. font-size: small;
  67. padding: 0.5em 1em 0.5em 1em;
  68. text-align: center;
  69. color: rgba(211, 211, 211, 1) !important;
  70. }
  71. #footer a:visited {
  72. color: rgb(255, 255, 255);
  73. }
  74. #footer a:hover {
  75. color: rgb(255, 255, 255);
  76. }
  77. #footer a {
  78. color: rgba(45, 120, 180, 1);
  79. }
  80. #footer p {
  81. margin: 0;
  82. padding: 0;
  83. }
  84. #pagebody ul {
  85. margin-bottom: 0;
  86. margin-top: 0.5em;
  87. padding: 0 1em 0 1em;
  88. }
  89. h2,h3,h4 {
  90. color: rgba(45, 120, 180, 1);
  91. margin: 0.8em 0 0 0;
  92. padding: 0;
  93. }
  94. nav {
  95. display: block;
  96. width: 100%;
  97. background-color: rgba(25, 70, 100, 1);
  98. padding: 0.5em 0;
  99. }
  100. ul.menu {
  101. display: inline-block;
  102. margin: 0;
  103. padding: 0;
  104. color: rgba(255, 255, 255, 1);
  105. text-align: center;
  106. }
  107. ul.menu + ul.menu::before {
  108. content: "  •  ";
  109. }
  110. ul.menu li {
  111. display: inline;
  112. white-space: nowrap;
  113. }
  114. ul.menu li a {
  115. padding: 0.5em 0.75em;
  116. text-decoration: none;
  117. font-weight: bold;
  118. color: rgba(255, 255, 255, 1);
  119. }
  120. ul.external li a {
  121. color: rgb(215, 240, 255);
  122. }
  123. ul.menu a:hover {
  124. background-color: rgba(255, 255, 255, 1);
  125. color: rgba(25, 70, 100, 1);
  126. border-radius: 4px;
  127. }
  128. img.screenshot {
  129. border-style: none;
  130. margin: 8px;
  131. padding: 0;
  132. }
  133. a:hover img.screenshot {
  134. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  135. position: relative;
  136. top: -4px;
  137. }
  138. a:visited {
  139. color: rgba(25, 70, 100, 1);
  140. }
  141. a:hover {
  142. color: rgba(15, 40, 60, 1);
  143. }
  144. a {
  145. color: rgba(45, 120, 180, 1);
  146. }
  147. .datestamp {
  148. margin: 0;
  149. padding: 0;
  150. width: 100%;
  151. font-size: 75%;
  152. text-align: right;
  153. color: rgba(128, 128, 128, 1);
  154. }