style.css 1.8 KB

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