base.css 741 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. body {
  2. background-color: #000;
  3. color: #ccc;
  4. font-family: sans-serif;
  5. }
  6. a:link, a:visited {
  7. color: #08a;
  8. text-decoration: none;
  9. }
  10. a:hover {
  11. color: #0af;
  12. text-decoration: underline;
  13. }
  14. img {
  15. border-style: none;
  16. vertical-align: middle;
  17. }
  18. header, article {
  19. width: 900px;
  20. margin: 20px auto;
  21. }
  22. object#player {
  23. position: absolute;
  24. left: -1px;
  25. top: 0;
  26. }
  27. section.song {
  28. background-color: #111;
  29. padding: 15px 20px;
  30. margin-top: 10px;
  31. }
  32. section.song .info {
  33. margin-bottom: 10px;
  34. }
  35. section.song div.thumb {
  36. float: left;
  37. width: 150px;
  38. overflow: hidden;
  39. }
  40. section.song canvas, section.song > img {
  41. position: relative;
  42. top: 20px;
  43. }
  44. section.song > img[src$='pause.png'] {
  45. display: none;
  46. }
  47. .clear {
  48. line-height: 0;
  49. clear: both;
  50. }