style.css 1.6 KB

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