base.css 918 B

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