style.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  2. margin: 0;
  3. padding: 0;
  4. border: 0;
  5. outline: 0;
  6. font-size: 100%;
  7. font: inherit;
  8. vertical-align: baseline;
  9. }
  10. /* HTML5 display-role reset for older browsers */
  11. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  12. display: block;
  13. }
  14. /* Let's go for the actual style */
  15. body {
  16. background-color: #EEEEEE;
  17. font-family: 'Noto Sans';
  18. }
  19. header {
  20. text-shadow:0 5px 6px rgba(150,150,150,0.69);
  21. text-align: center;
  22. color: #1182DB;
  23. }
  24. header > h1 {
  25. font-size: 300%;
  26. }
  27. header > h2 {
  28. margin-left: 1em;
  29. font-size: 120%;
  30. }
  31. header > p.status {
  32. font-weight: bold;
  33. margin: 1em;
  34. color: red;
  35. }
  36. .searchbar {
  37. width: 50%;
  38. margin: auto;
  39. }
  40. .searchbar input[type="text"] {
  41. width: 100%;
  42. margin: auto;
  43. font-size: 1.4em;
  44. }
  45. .searchbar input[type="text"]::placeholder {
  46. text-align: center;
  47. }
  48. .searchbar > h3 {
  49. font-size: 150%;
  50. font-weight: bold;
  51. color: #1182DB;
  52. }
  53. section {
  54. background-color: #FFFFFF;
  55. width: 80%;
  56. margin: 30px auto;
  57. padding: 10px 15px;
  58. text-align: center;
  59. box-shadow: 0px 1px 2px rgba(0,0,0, 0.25);
  60. }
  61. section.footer {
  62. opacity: 0.5;
  63. }
  64. section.footer:hover {
  65. opacity: 1;
  66. }
  67. section > h2 {
  68. font-size: 200%;
  69. font-weight: bold;
  70. }
  71. a, a:link, a:visited {
  72. color: #2196F3;
  73. }
  74. button {
  75. line-height: 1.9em;
  76. color: #FFF;
  77. font-weight: bold;
  78. vertical-align: middle;
  79. padding: 6px 12px;
  80. margin: 12px auto 0px;
  81. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  82. border-radius: 2px;
  83. border: 1px solid transparent;
  84. min-width: 140px;
  85. background: #2196F3 none repeat scroll 0% 0%;
  86. cursor: pointer;
  87. width: calc(20% - 4px);
  88. }
  89. button.small {
  90. width: auto;
  91. line-height: 1.2em;
  92. }
  93. .description {
  94. margin: 10px;
  95. text-decoration: underline;
  96. }
  97. h5 {
  98. margin: 20px;
  99. font-weight: bold;
  100. }
  101. form {
  102. margin-bottom: 6px;
  103. }
  104. .maintainer {
  105. font-size: 60%;
  106. text-align: right;
  107. }
  108. .secure-warning {
  109. background-color: #ffc600;
  110. color: #5f5f5f;
  111. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  112. border-radius: 2px;
  113. border: 1px solid transparent;
  114. width: 80%;
  115. margin: auto;
  116. margin-bottom: 6px;
  117. }
  118. input[type="text"] {
  119. background-color: white;
  120. color: #404552;
  121. border: 0px;
  122. border-bottom: 2px solid #2196F3;
  123. font-size: 1.1em;
  124. margin-left: 8px;
  125. padding-left: 4px;
  126. }
  127. form {
  128. display: none;
  129. }
  130. h5 {
  131. display: none;
  132. }
  133. .showmore-box {
  134. display: none;
  135. }
  136. .showmore, .showless {
  137. color: #888888;
  138. cursor: pointer;
  139. }
  140. .showmore-box:checked ~ .showmore {
  141. display: none;
  142. }
  143. .showmore-box:not(:checked) ~ .showless {
  144. display: none;
  145. }
  146. .showmore-box:checked ~ form, .showmore-box:checked ~ h5 {
  147. display: block;
  148. }
  149. /* Additional styles for error pages */
  150. .exception-message {
  151. background-color: #c00000;
  152. color: #FFFFFF;
  153. font-weight: bold;
  154. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  155. border-radius: 2px;
  156. border: 1px solid transparent;
  157. width: 80%;
  158. margin: auto;
  159. margin-bottom: 6px;
  160. }
  161. .advice {
  162. margin-left: auto;
  163. margin-right: auto;
  164. display: table;
  165. }
  166. .advice > li {
  167. text-align: left;
  168. }