base.css 921 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. body {
  2. background-color: #000;
  3. color: #ccc;
  4. font-family: 'Cantarell', 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. img.aa {
  23. opacity: 0.9;
  24. }
  25. object#player {
  26. position: absolute;
  27. left: -1px;
  28. top: 0;
  29. }
  30. section.song {
  31. background-color: #111;
  32. padding: 15px 20px;
  33. margin-top: 10px;
  34. }
  35. section.song div.info {
  36. margin-bottom: 10px;
  37. float: left;
  38. }
  39. section.song div.user {
  40. float: right;
  41. }
  42. section.song div.thumb {
  43. float: left;
  44. width: 150px;
  45. overflow: hidden;
  46. }
  47. section.song canvas, section.song > img {
  48. position: relative;
  49. top: 20px;
  50. }
  51. section.song > img[src$='pause.png'] {
  52. display: none;
  53. }
  54. section.song > img {
  55. opacity: 0.5;
  56. }
  57. section.song > img:hover {
  58. opacity: 1.0;
  59. }
  60. .clear {
  61. line-height: 0;
  62. clear: both;
  63. }