style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. html {
  2. font-family: sans-serif;
  3. -webkit-text-size-adjust: 100%;
  4. -ms-text-size-adjust: 100%;
  5. color: #444444;
  6. }
  7. #header { position: absolute; top: 0; left: 0; width: 100%; padding: 0 16px; background: #444444; line-height: 40px; }
  8. #header a { color: #CCCCCC; padding: 0 8px; }
  9. #header a:hover { color: #FFFFFF; }
  10. .row { max-width: 800px; margin: auto; text-align: justify; }
  11. .row h1 { font-size: 3em; margin-top: 50px; }
  12. .row p { padding: 0 10px; }
  13. h1.title { margin-top: 80px; }
  14. .center { text-align: center; }
  15. h1 { font-size: 5em; }
  16. input { border: 2px solid #666666; color: #444444; padding: 8px; background-color: #FFFFFF; font-size: 1.1em; }
  17. input[type="checkbox"] { visibility: hidden; }
  18. .checkbox_container { display: inline-block; position: relative; padding-left: 3px; margin: 0 10px; }
  19. .checkbox_container label {
  20. cursor: pointer;
  21. }
  22. .checkbox_container label.cb {
  23. position: absolute;
  24. width: 16px;
  25. height: 16px;
  26. top: 2px;
  27. left: 2px;
  28. background: #eee;
  29. border:1px solid #ddd;
  30. }
  31. .checkbox_container label.cb:after {
  32. opacity: 0.2;
  33. content: '';
  34. position: absolute;
  35. width: 8px;
  36. height: 4px;
  37. background: transparent;
  38. top: 3px;
  39. left: 3px;
  40. border: 3px solid #333;
  41. border-top: none;
  42. border-right: none;
  43. -webkit-transform: rotate(-45deg);
  44. -moz-transform: rotate(-45deg);
  45. -o-transform: rotate(-45deg);
  46. -ms-transform: rotate(-45deg);
  47. transform: rotate(-45deg);
  48. }
  49. .checkbox_container label.cb:hover:after {
  50. opacity: 0.5;
  51. }
  52. .checkbox_container input[type=checkbox]:checked + label.cb:after {
  53. opacity: 1;
  54. }
  55. a { text-decoration: none; }
  56. .result { margin-bottom: 16px; }
  57. .result_title { margin-bottom: 0; }
  58. .result p { margin-top: 0; padding-top: 0; font-size: 0.8em; max-width: 50em; }
  59. .result h3 { font-size: 0.9em;}
  60. .result { max-width: 70em; }
  61. .url { font-weight: bold; }
  62. .q { width: 30em; }
  63. .engines { color: #888888; }
  64. .small p { margin: 2px 0; }
  65. .right { float: right; }
  66. .invisible { display: none; }