38 lines
765 B
CSS
38 lines
765 B
CSS
.fullscreen {
|
|
width: 100%;
|
|
height: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
#navigation {
|
|
background-color: #333;
|
|
height: 30px;
|
|
}
|
|
#navigation li {
|
|
display: block;
|
|
float: left;
|
|
width: auto;
|
|
height: 30px;
|
|
margin-left: 10px;
|
|
color: #FFF;
|
|
line-height: 30px;
|
|
text-shadow: #CCC 0px 0px 0.5px;
|
|
}
|
|
#navigation li:hover {
|
|
cursor: pointer;
|
|
text-shadow: #CCC 0px 0px 2px;
|
|
}
|
|
#navigation li.logo {
|
|
font-size: 20px;
|
|
line-height: 32px;
|
|
font-weight: bold;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
/* Colorizing *
|
|
#player-container { background-color: #CFC; }
|
|
#data-container { background-color: #CCF; }
|
|
#player { background-color: #AAC; }
|
|
#playlist { background-color: #ACC; }
|
|
.artist-info { background-color: #8EA; }
|
|
.albums { background-color: #A8E; } |