| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- header label, header input {
- position: absolute;
- }
- header label[for="user"] {
- left: 480px;
- top: 5px;
- }
- header input#user {
- left: 570px;
- top: 0px;
- }
- header label[for="song"] {
- left: 300px;
- top: 55px;
- }
- header input#song {
- left: 390px;
- top: 50px;
- width: 420px;
- text-align: center;
- }
- header input[type="submit"] {
- left: 830px;
- top: 50px;
- }
- div#results {
- display: none;
- position: absolute;
- width: 430px;
- height: 560px;
- left: 390px;
- top: 83px;
- background-color: #111;
- border: 1px solid #aaa;
- z-index: 1;
- }
- div#results ul {
- margin: 5px 10px;
- padding: 0;
- }
- div#results ul li {
- list-style: none;
- display: block;
- height: 50px;
- margin: 5px 0;
- overflow: hidden;
- }
- div#results ul li:hover {
- background-color: #024;
- }
- div#results ul li a {
- display: block;
- height: 100%;
- }
- div#results ul li a:hover {
- text-decoration: none;
- }
- div#results ul li img {
- height: 50px;
- width: 66px;
- float: left;
- margin-right: 10px;
- }
- object#player {
- position: absolute;
- left: -1px;
- top: 0;
- }
- section.song {
- background-color: #111;
- padding: 10px 15px;
- margin-top: 7px;
- position: relative; /* for remove */
- }
- section.song div.info {
- float: left;
- }
- section.song div.user {
- float: right;
- margin-right: 20px;
- }
- section.song div.remove {
- position: absolute;
- top: 0;
- right: 5px;
- }
- section.song div.remove img {
- opacity: 0.6;
- }
- section.song div.remove img:hover {
- opacity: 1.0;
- }
- section.song div.reorder {
- position: absolute;
- bottom: 0;
- right: 5px;
- }
- section.song div.reorder img {
- display: block;
- margin-bottom: 5px;
- opacity: 0.6;
- }
- section.song div.reorder img:hover {
- opacity: 1.0;
- }
- section.song div.thumb {
- float: left;
- width: 100px;
- height: 60px;
- overflow: hidden;
- }
- section.song div.thumb img {
- height: 60px;
- }
- section.song > img {
- margin-top: 16px;
- }
- section.song > img[src$='pause.png'] {
- display: none;
- }
- section.song > img {
- opacity: 0.5;
- }
- section.song > img:hover {
- opacity: 1.0;
- }
- section.song canvas {
- margin: 15px 0 0 18px;
- vertical-align: middle;
- }
|