base.css 806 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body {
  2. background-color: #000;
  3. color: #ccc;
  4. }
  5. body, input {
  6. font-family: 'Cantarell', sans-serif;
  7. font-size: 16px;
  8. }
  9. a:link, a:visited {
  10. color: #08a;
  11. text-decoration: none;
  12. }
  13. a:hover {
  14. color: #0af;
  15. text-decoration: underline;
  16. }
  17. img {
  18. border-style: none;
  19. vertical-align: middle;
  20. }
  21. form {
  22. display: inline;
  23. text-align: center;
  24. }
  25. input, button {
  26. background-color: #050505;
  27. border: 1px solid #aaa;
  28. color: #eee;
  29. padding: 2px 5px;
  30. }
  31. input:focus {
  32. border: 1px solid #38a;
  33. }
  34. input[type="submit"] {
  35. background-color: #111;
  36. padding: 1px 5px;
  37. line-height: 27px;
  38. }
  39. label {
  40. cursor: pointer;
  41. }
  42. header, article {
  43. width: 900px;
  44. margin: 20px auto;
  45. clear: both;
  46. }
  47. img.aa {
  48. float: left;
  49. opacity: 0.9;
  50. }
  51. header {
  52. position: relative; /* for #results */
  53. }
  54. .clear {
  55. line-height: 0;
  56. clear: both;
  57. }