| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- body {
- background-color: #000;
- color: #ccc;
- font-family: sans-serif;
- }
- a:link, a:visited {
- color: #08a;
- text-decoration: none;
- }
- a:hover {
- color: #0af;
- text-decoration: underline;
- }
- img {
- border-style: none;
- vertical-align: middle;
- }
- header, article {
- width: 900px;
- margin: 20px auto;
- }
- object#player {
- position: absolute;
- left: -1px;
- top: 0;
- }
- section.song {
- background-color: #111;
- padding: 15px 20px;
- margin-top: 10px;
- }
- section.song .info {
- margin-bottom: 10px;
- }
- section.song div.thumb {
- float: left;
- width: 150px;
- overflow: hidden;
- }
- section.song canvas, section.song > img {
- position: relative;
- top: 20px;
- }
- section.song > img[src$='pause.png'] {
- display: none;
- }
- .clear {
- line-height: 0;
- clear: both;
- }
|