style.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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. input[type="text"] {
  37. background-color: white;
  38. color: #404552;
  39. border: 0px;
  40. border-bottom: 2px solid #2196F3;
  41. font-size: 1.1em;
  42. margin-left: 8px;
  43. padding-left: 4px;
  44. }
  45. .searchbar {
  46. width: 50%;
  47. margin: auto;
  48. }
  49. .searchbar input[type="text"] {
  50. width: 100%;
  51. margin: auto;
  52. font-size: 1.4em;
  53. text-align: center;
  54. }
  55. .searchbar input[type="text"]::placeholder {
  56. text-align: center;
  57. }
  58. .searchbar input[type="text"]:focus::-webkit-input-placeholder {
  59. opacity: 0;
  60. }
  61. .searchbar input[type="text"]:focus::-moz-placeholder {
  62. opacity: 0;
  63. }
  64. .searchbar input[type="text"]:focus:-moz-placeholder {
  65. opacity: 0;
  66. }
  67. .searchbar input[type="text"]:focus:-ms-input-placeholder {
  68. opacity: 0;
  69. }
  70. .searchbar > h3 {
  71. font-size: 150%;
  72. font-weight: bold;
  73. color: #1182DB;
  74. }
  75. section {
  76. background-color: #FFFFFF;
  77. width: 80%;
  78. margin: 30px auto;
  79. padding: 10px 15px;
  80. text-align: center;
  81. box-shadow: 0px 1px 2px rgba(0,0,0, 0.25);
  82. }
  83. section.footer {
  84. opacity: 0.5;
  85. }
  86. section.footer:hover {
  87. opacity: 1;
  88. }
  89. section.footer .version {
  90. font-size: 80%;
  91. }
  92. section > h2 {
  93. font-size: 200%;
  94. font-weight: bold;
  95. }
  96. a, a:link, a:visited {
  97. color: #2196F3;
  98. }
  99. button {
  100. line-height: 1.9em;
  101. color: #FFF;
  102. font-weight: bold;
  103. vertical-align: middle;
  104. padding: 6px 12px;
  105. margin: 12px auto 0px;
  106. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  107. border-radius: 2px;
  108. border: 1px solid transparent;
  109. min-width: 140px;
  110. background: #2196F3 none repeat scroll 0% 0%;
  111. cursor: pointer;
  112. width: calc(20% - 4px);
  113. }
  114. button.small {
  115. width: auto;
  116. line-height: 1.2em;
  117. }
  118. .description {
  119. margin: 10px;
  120. text-decoration: underline;
  121. }
  122. h5 {
  123. margin: 20px;
  124. font-weight: bold;
  125. }
  126. form {
  127. margin-bottom: 6px;
  128. }
  129. .maintainer {
  130. font-size: 60%;
  131. text-align: right;
  132. }
  133. .secure-warning {
  134. background-color: #ffc600;
  135. color: #5f5f5f;
  136. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  137. border-radius: 2px;
  138. border: 1px solid transparent;
  139. width: 80%;
  140. margin: auto;
  141. margin-bottom: 6px;
  142. }
  143. form {
  144. display: none;
  145. }
  146. h5 {
  147. display: none;
  148. }
  149. .showmore-box {
  150. display: none;
  151. }
  152. .showmore, .showless {
  153. color: #888888;
  154. cursor: pointer;
  155. }
  156. .showmore-box:checked ~ .showmore {
  157. display: none;
  158. }
  159. .showmore-box:not(:checked) ~ .showless {
  160. display: none;
  161. }
  162. .showmore-box:checked ~ form, .showmore-box:checked ~ h5 {
  163. display: block;
  164. }
  165. /* Additional styles for error pages */
  166. .exception-message {
  167. background-color: #c00000;
  168. color: #FFFFFF;
  169. font-weight: bold;
  170. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  171. border-radius: 2px;
  172. border: 1px solid transparent;
  173. width: 80%;
  174. margin: auto;
  175. margin-bottom: 6px;
  176. }
  177. .advice {
  178. margin-left: auto;
  179. margin-right: auto;
  180. display: table;
  181. }
  182. .advice > li {
  183. text-align: left;
  184. }