| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- body {
- background-color: #000;
- color: #ccc;
- font-family: 'Cantarell', 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;
- }
- img.aa {
- opacity: 0.9;
- }
- object#player {
- position: absolute;
- left: -1px;
- top: 0;
- }
- section.song {
- background-color: #111;
- padding: 15px 20px;
- margin-top: 10px;
- }
- section.song div.info {
- margin-bottom: 10px;
- float: left;
- }
- section.song div.user {
- float: right;
- }
- 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;
- }
- section.song > img {
- opacity: 0.5;
- }
- section.song > img:hover {
- opacity: 1.0;
- }
- .clear {
- line-height: 0;
- clear: both;
- }
|