Moving css, starting applying new design
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
@mixin alpha_gradient($r, $g, $b, $hex) {
|
||||
background: -moz-linear-gradient(left, rgba($r, $g, $b, 0) 0%, rgba($r, $g, $b, 1) 50%, rgba($r, $g, $b, 1) 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba($r, $g, $b, 0)), color-stop(50%, rgba($r, $g, $b, 1)), color-stop(100%, rgba($r, $g, $b, 1)));
|
||||
background: -webkit-linear-gradient(left, rgba($r, $g, $b, 0) 0%, rgba($r, $g, $b, 1) 50%, rgba($r, $g, $b, 1) 100%);
|
||||
background: -o-linear-gradient(left, rgba($r, $g, $b, 0) 0%, rgba($r, $g, $b, 1) 50%, rgba($r, $g, $b, 1) 100%);
|
||||
background: -ms-linear-gradient(left, rgba($r, $g, $b, 0) 0%, rgba($r, $g, $b, 1) 50%, rgba($r, $g, $b, 1) 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00#{$hex}', endColorstr='##{$hex}', GradientType=1);
|
||||
background: linear-gradient(left, rgba($r, $g, $b, 0) 0%, rgba($r, $g, $b, 1) 50%, rgba($r, $g, $b, 1) 100%);
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
@mixin opacity($val) {
|
||||
-moz-opacity: $val;
|
||||
-ms-filter:”alpha(opacity=$val*100)”;
|
||||
filter:alpha(opacity=$val*100);
|
||||
opacity: $val;
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
@mixin rounded($radius: 5) {
|
||||
border-radius: #{$radius}px;
|
||||
-moz-border-radius: #{$radius}px;
|
||||
-webkit-border-radius: #{$radius}px;
|
||||
}
|
||||
@@ -1,151 +0,0 @@
|
||||
@import "alpha_gradient";
|
||||
|
||||
.artist-info {
|
||||
width: 100%;
|
||||
float: left;
|
||||
margin: 0 0 25px 0;
|
||||
clear: both;
|
||||
|
||||
.pic {
|
||||
float: left;
|
||||
width: 250px;
|
||||
margin: 25px 0;
|
||||
|
||||
img {
|
||||
margin-left: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.name {
|
||||
margin: 25px 0 0 300px;
|
||||
}
|
||||
|
||||
.info {
|
||||
margin: 0 17px 25px 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.albums {
|
||||
width: 100%;
|
||||
float: left;
|
||||
clear: both;
|
||||
|
||||
.album {
|
||||
clear: both;
|
||||
|
||||
.pic {
|
||||
float: left;
|
||||
width: 250px;
|
||||
|
||||
> * {
|
||||
margin-left: 25px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 248px;
|
||||
height: 248px;
|
||||
border: #d0d0d0 1px solid;
|
||||
}
|
||||
|
||||
.add-album-button-container {
|
||||
position: relative;
|
||||
margin: 10px -50px 0 0;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.name {
|
||||
display: block;
|
||||
margin: 0 0 10px 300px;
|
||||
}
|
||||
|
||||
.tracklist {
|
||||
margin: 0 17px 30px 275px;
|
||||
|
||||
ul {
|
||||
li {
|
||||
display: block;
|
||||
height: 26px;
|
||||
position: relative;
|
||||
padding-left: 25px;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
|
||||
.track-container {
|
||||
background-color: #fafafa;
|
||||
.fade {
|
||||
@include alpha_gradient(250, 250, 250, "fafafa");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
&.now {
|
||||
.track-container {
|
||||
background-color: #e0f0fa;
|
||||
.fade {
|
||||
@include alpha_gradient(224, 240, 250, "e0f0fa");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.add-track {
|
||||
display: none;
|
||||
float: left;
|
||||
padding: 1px 5px;
|
||||
margin: 3px 0 0 -22px;
|
||||
}
|
||||
|
||||
.track-container {
|
||||
height: 20px;
|
||||
padding: 5px 0 0 0;
|
||||
border-top: #e0e0e0 1px solid;
|
||||
|
||||
> * {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.fade {
|
||||
right: 0px;
|
||||
top: 6px;
|
||||
width: 80px;
|
||||
height: 16px;
|
||||
z-index: 20;
|
||||
@include alpha_gradient(255, 255, 255, "ffffff");
|
||||
}
|
||||
|
||||
.index {
|
||||
left: 22px;
|
||||
top: 9px;
|
||||
display: block;
|
||||
width: 15px;
|
||||
text-align: right;
|
||||
font-size: 10px;
|
||||
color: #505050;
|
||||
}
|
||||
|
||||
.trackname {
|
||||
left: 40px;
|
||||
top: 6px;
|
||||
width: 90%;
|
||||
height: 16px;
|
||||
overflow: hidden;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.length {
|
||||
right: 0px;
|
||||
top: 6px;
|
||||
height: 16px;
|
||||
z-index: 30;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
html, body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
-moz-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
cursor: default;
|
||||
min-width: 1000px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header-container {
|
||||
margin-right: 350px;
|
||||
}
|
||||
.player-container {
|
||||
width: 350px;
|
||||
height: 600px;
|
||||
float: right;
|
||||
background-color: #222;
|
||||
}
|
||||
.data-container {
|
||||
width: auto;
|
||||
margin-right: 350px;
|
||||
overflow-y: auto;
|
||||
min-width: 650px;
|
||||
}
|
||||
|
||||
.player {
|
||||
width: 100%;
|
||||
height: 120px;
|
||||
}
|
||||
.playlist {
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.subpages {
|
||||
display: none;
|
||||
}
|
||||
@@ -1,78 +0,0 @@
|
||||
.header-container {
|
||||
.hello {
|
||||
display: none;
|
||||
float: right;
|
||||
margin: 6px 10px 0 0;
|
||||
color: #222;
|
||||
|
||||
.greating {
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 8px;
|
||||
|
||||
span {
|
||||
border-bottom: #202020 1px dotted;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.settings-button {
|
||||
float: right;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin: 1px 0;
|
||||
background-image: url(/images/icns/settings.png);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.navigation {
|
||||
background-color: #EEE;
|
||||
background-image: url(/images/concrete_wall_2.png);
|
||||
height: 30px;
|
||||
|
||||
li {
|
||||
display: block;
|
||||
float: left;
|
||||
width: auto;
|
||||
height: 30px;
|
||||
margin-left: 10px;
|
||||
color: #222;
|
||||
line-height: 30px;
|
||||
text-shadow: #666 0px 0px 0.5px;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
text-shadow: #666 0px 0px 2px;
|
||||
}
|
||||
|
||||
&.logo {
|
||||
font-size: 20px;
|
||||
line-height: 32px;
|
||||
font-weight: bold;
|
||||
margin: -3px 1px 0 10px;
|
||||
|
||||
.version {
|
||||
float: right;
|
||||
font-size: 9px;
|
||||
font-weight: normal;
|
||||
margin: 10px 0 0 4px;
|
||||
}
|
||||
}
|
||||
|
||||
&.vk_auth {
|
||||
display: none;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
border-bottom: #a0a0a0 1px solid;
|
||||
|
||||
&.a {
|
||||
border-bottom: #a0a0a0 1px dotted;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,156 +0,0 @@
|
||||
@import "rounded";
|
||||
|
||||
.fullscreen {
|
||||
position: absolute;
|
||||
z-index: 9999;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
text-align: center;
|
||||
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff)";
|
||||
|
||||
.inner {
|
||||
position: relative;
|
||||
top: 50%;
|
||||
margin-top: -50px;
|
||||
height: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline;
|
||||
width: auto;
|
||||
padding: 5px 10px;
|
||||
border: 1px solid;
|
||||
cursor: pointer;
|
||||
@include rounded(3);
|
||||
|
||||
&.gray {
|
||||
background-color: #e0e0e0;
|
||||
color: #404040;
|
||||
text-shadow: #d0d0d0 0px 1px 1px;
|
||||
border-color: #d0d0d0;
|
||||
box-shadow: #c0c0c0 1px 1px 0px;
|
||||
}
|
||||
|
||||
&.red {
|
||||
background-color: #fab0b0;
|
||||
color: #e05050;
|
||||
text-shadow: #c08080 0px 1px 1px;
|
||||
border-color: #eaa0a0;
|
||||
box-shadow: #da9090 1px 1px 0px;
|
||||
}
|
||||
|
||||
&.big {
|
||||
font-size: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Scrollbars */
|
||||
|
||||
|
||||
.data-container {
|
||||
.scrollbar-pane {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.scrollbar-handle-container {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
.scrollbar-handle {
|
||||
width: 8px;
|
||||
}
|
||||
.scrollbar-handle-container {
|
||||
background-color: #FFF;
|
||||
}
|
||||
.scrollbar-handle {
|
||||
background-color: #CCC;
|
||||
|
||||
&:hover {
|
||||
background-color: #999;
|
||||
}
|
||||
|
||||
&.move {
|
||||
background-color: #AAA;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.player-container {
|
||||
.scrollbar-pane {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.scrollbar-handle-container {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
.scrollbar-handle {
|
||||
width: 8px;
|
||||
}
|
||||
.scrollbar-handle-container {
|
||||
background-color: #222;
|
||||
}
|
||||
.scrollbar-handle {
|
||||
background-color: #444;
|
||||
|
||||
&:hover {
|
||||
background-color: #666;
|
||||
}
|
||||
|
||||
&.move {
|
||||
background-color: #888;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.error_page {
|
||||
position: relative;
|
||||
width: 600px;
|
||||
text-align: center;
|
||||
top: 100px;
|
||||
left: 50%;
|
||||
margin-left: -300px;
|
||||
|
||||
h1 {
|
||||
font-size: 150px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.kaboom {
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.auth-notice {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #60a0ff;
|
||||
color: #ffffff;
|
||||
top: 32px;
|
||||
left: 290px;
|
||||
line-height: 35px;
|
||||
padding-right: 10px;
|
||||
border: #4080dd 1px solid;
|
||||
@include rounded(3);
|
||||
cursor: pointer;
|
||||
|
||||
.arrow {
|
||||
float: left;
|
||||
margin: -5px 10px 0 10px;
|
||||
font-size: 25px;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
@@ -1,228 +0,0 @@
|
||||
@import "alpha_gradient";
|
||||
@import "rounded";
|
||||
@import "opacity";
|
||||
$icons_dir: "/images/icns/";
|
||||
|
||||
.player-container {
|
||||
.player {
|
||||
.now-playing {
|
||||
position: relative;
|
||||
height: 30px;
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
line-height: 30px;
|
||||
overflow: hidden;
|
||||
|
||||
.fade {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
width: 50px;
|
||||
height: 30px;
|
||||
z-index: 10;
|
||||
@include alpha_gradient(32, 32, 32, '202020');
|
||||
}
|
||||
}
|
||||
|
||||
.progress {
|
||||
width: 330px;
|
||||
height: 5px;
|
||||
background-color: #333;
|
||||
margin: 0 10px;
|
||||
cursor: pointer;
|
||||
|
||||
.loaded {
|
||||
width: 0;
|
||||
height: 5px;
|
||||
background-color: #405050;
|
||||
}
|
||||
|
||||
.played {
|
||||
width: 0;
|
||||
height: 5px;
|
||||
background-color: #09A;
|
||||
}
|
||||
}
|
||||
|
||||
.controls {
|
||||
width: 290px;
|
||||
margin: 20px 95px;
|
||||
|
||||
> * {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.prev {
|
||||
background-image: url('#{$icons_dir}prev.png');
|
||||
}
|
||||
|
||||
.play {
|
||||
background-image: url('#{$icons_dir}play.png');
|
||||
}
|
||||
|
||||
.pause {
|
||||
background-image: url('#{$icons_dir}pause.png');
|
||||
display: none;
|
||||
}
|
||||
|
||||
.next {
|
||||
background-image: url('#{$icons_dir}next.png');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.playlist {
|
||||
.playlist-tracks {
|
||||
width: 343px;
|
||||
|
||||
li {
|
||||
display: block;
|
||||
height: 26px;
|
||||
|
||||
.item {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 26px;
|
||||
color: #FFF;
|
||||
|
||||
&:hover {
|
||||
background-color: #444;
|
||||
cursor: default;
|
||||
|
||||
.fade {
|
||||
@include alpha_gradient(64, 64, 64, '404040');
|
||||
}
|
||||
}
|
||||
|
||||
.dragbox {
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
left: 2px;
|
||||
width: 15px;
|
||||
height: 26px;
|
||||
background-image: url('/images/drag.png');
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.title {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 19px;
|
||||
z-index: 10;
|
||||
width: 316px;
|
||||
height: 26px;
|
||||
line-height: 26px;
|
||||
display: block;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
|
||||
.data.artist, .playtrack {
|
||||
border-bottom: #555 1px dotted;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.duration {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 5px;
|
||||
z-index: 30;
|
||||
height: 26px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.remove {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 5px;
|
||||
z-index: 30;
|
||||
height: 15px;
|
||||
font-size: 11px;
|
||||
background-color: #622;
|
||||
color: #FFF;
|
||||
border: #822 1px solid;
|
||||
padding: 1px 2px 0 2px;
|
||||
@include rounded(2);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.fade {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 20;
|
||||
width: 80px;
|
||||
height: 26px;
|
||||
@include alpha_gradient(32, 32, 32, '202020');
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(odd) {
|
||||
.item {
|
||||
background-color: #2A2A2A;
|
||||
|
||||
.fade {
|
||||
@include alpha_gradient(42, 42, 42, '2a2a2a');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.now {
|
||||
.item {
|
||||
color: #09A;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.additional-controls {
|
||||
width: 350px;
|
||||
height: 27px;
|
||||
background-color: #333;
|
||||
border-top: #444 1px solid;
|
||||
|
||||
.item {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
line-height: 26px;
|
||||
color: #FFF;
|
||||
@include opacity(0.3);
|
||||
|
||||
&:hover {
|
||||
@include opacity(1);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&.active {
|
||||
@include opacity(0.8);
|
||||
}
|
||||
|
||||
img {
|
||||
float: left;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.annotation {
|
||||
float: left;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
&#empty-playlist {
|
||||
float: right;
|
||||
margin-right: 10px;
|
||||
|
||||
img {
|
||||
margin-top: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
@import "rounded";
|
||||
|
||||
.pulldown {
|
||||
display: none;
|
||||
position: relative;
|
||||
background-color: #ffffff;
|
||||
border-top: #c0c0c0 1px solid;
|
||||
border-bottom: #c0c0c0 1px solid;
|
||||
margin-right: 350px;
|
||||
padding: 25px;
|
||||
|
||||
.pd-spinner {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: -32px 0 0 -32px;
|
||||
}
|
||||
|
||||
/* Search */
|
||||
.search-container {
|
||||
|
||||
.spinner, .artist_loading, .artist_pics, .suggestions {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
margin: 70px 0 0 171px;
|
||||
}
|
||||
|
||||
.search_form {
|
||||
.search_field {
|
||||
width: 300px;
|
||||
font-size: 24px;
|
||||
padding: 4px;
|
||||
border: #CCC 1px solid;
|
||||
@include rounded(3);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.autocomplete {
|
||||
margin: 4px 0 0 -1px;
|
||||
|
||||
div {
|
||||
font-size: 24px;
|
||||
padding: 6px 5px;
|
||||
border-top: #BBB 1px solid;
|
||||
margin-bottom: 1px;
|
||||
|
||||
&:first-child {
|
||||
border: none;
|
||||
}
|
||||
|
||||
&.selected {
|
||||
background-color: #DDD;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,75 +0,0 @@
|
||||
@import "rounded";
|
||||
|
||||
.search-container {
|
||||
width: 425px;
|
||||
padding: 0 5px;
|
||||
|
||||
#search_form {
|
||||
#search_field {
|
||||
width: 300px;
|
||||
font-size: 24px;
|
||||
padding: 4px;
|
||||
border: #CCC 1px solid;
|
||||
@include rounded(3);
|
||||
}
|
||||
}
|
||||
|
||||
.spinner {
|
||||
display: none;
|
||||
margin: 20px 0 0 175px;
|
||||
}
|
||||
|
||||
.artist_loading {
|
||||
display: none;
|
||||
margin: 15px 0;
|
||||
font-size: 18;
|
||||
}
|
||||
|
||||
.artist_pics {
|
||||
display: none;
|
||||
|
||||
.pic {
|
||||
float: left;
|
||||
width: 47px;
|
||||
height: 47px;
|
||||
overflow: hidden;
|
||||
margin: 0 5px 5px 0;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 47px;
|
||||
}
|
||||
}
|
||||
|
||||
.suggestions {
|
||||
display: none;
|
||||
width: 415px;
|
||||
text-align: left;
|
||||
font-size: 24px;
|
||||
|
||||
div {
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
display: block;
|
||||
width: auto;
|
||||
margin-bottom: 6px;
|
||||
|
||||
.data {
|
||||
&.artist {
|
||||
color: #04F;
|
||||
border-bottom: #04F 1px dotted;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 14px;
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,121 +0,0 @@
|
||||
@import "rounded";
|
||||
|
||||
.settings-container {
|
||||
margin: 25px;
|
||||
|
||||
.tabs {
|
||||
height: 26px;
|
||||
|
||||
> div {
|
||||
float: left;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.left-space {
|
||||
width: 15px;
|
||||
}
|
||||
|
||||
.middle-space {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
position: relative;
|
||||
border-left: #DDD 1px solid;
|
||||
border-top: #DDD 1px solid;
|
||||
border-right: #DDD 1px solid;
|
||||
padding: 0 8px;
|
||||
line-height: 24px;
|
||||
margin-top: 2px;
|
||||
@include rounded(5);
|
||||
background-color: #FAFAFA;
|
||||
cursor: pointer;
|
||||
|
||||
&.active {
|
||||
z-index: 200;
|
||||
background-color: #FFF;
|
||||
border-left: #CCC 1px solid;
|
||||
border-top: #CCC 1px solid;
|
||||
border-right: #CCC 1px solid;
|
||||
border-bottom: #FFF 6px solid;
|
||||
margin-top: -2px;
|
||||
line-height: 29px;
|
||||
font-weight: bold;
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-container {
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
height: 500px;
|
||||
border-top: #CCC 1px solid;
|
||||
|
||||
.form {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
|
||||
.field {
|
||||
height: 40px;
|
||||
margin-bottom: 10px;
|
||||
clear: both;
|
||||
|
||||
.label{
|
||||
float: left;
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
width: 140px;
|
||||
padding: 3px 6px;
|
||||
@include rounded(3);
|
||||
background-color: #EAEAEA;
|
||||
margin-right: -10px;
|
||||
}
|
||||
|
||||
.value {
|
||||
float: left;
|
||||
|
||||
input[type="text"]{
|
||||
font-size: 24px;
|
||||
padding: 4px;
|
||||
background-color: #ffffff;
|
||||
color: #202020;
|
||||
border: #CCC 1px solid;
|
||||
@include rounded(3);
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
select {
|
||||
font-size: 24px;
|
||||
background-color: #ffffff;
|
||||
color: #202020;
|
||||
border: #CCC 1px solid;
|
||||
width: 310px;
|
||||
height: 38px;
|
||||
}
|
||||
}
|
||||
|
||||
.action-button {
|
||||
float: left;
|
||||
margin: 6px 0 0 5px;
|
||||
}
|
||||
|
||||
.saved {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.logout {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.forms {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
.textpage {
|
||||
margin: 25px;
|
||||
}
|
||||
@@ -1,113 +0,0 @@
|
||||
.artist-info {
|
||||
width: 100%;
|
||||
float: left;
|
||||
margin: 0 0 25px 0;
|
||||
clear: both; }
|
||||
.artist-info .pic {
|
||||
float: left;
|
||||
width: 250px;
|
||||
margin: 25px 0; }
|
||||
.artist-info .pic img {
|
||||
margin-left: 25px; }
|
||||
.artist-info .name {
|
||||
margin: 25px 0 0 300px; }
|
||||
.artist-info .info {
|
||||
margin: 0 17px 25px 300px; }
|
||||
|
||||
.albums {
|
||||
width: 100%;
|
||||
float: left;
|
||||
clear: both; }
|
||||
.albums .album {
|
||||
clear: both; }
|
||||
.albums .album .pic {
|
||||
float: left;
|
||||
width: 250px; }
|
||||
.albums .album .pic > * {
|
||||
margin-left: 25px; }
|
||||
.albums .album .pic img {
|
||||
width: 248px;
|
||||
height: 248px;
|
||||
border: #d0d0d0 1px solid; }
|
||||
.albums .album .pic .add-album-button-container {
|
||||
position: relative;
|
||||
margin: 10px -50px 0 0;
|
||||
text-align: center; }
|
||||
.albums .album .name {
|
||||
display: block;
|
||||
margin: 0 0 10px 300px; }
|
||||
.albums .album .tracklist {
|
||||
margin: 0 17px 30px 275px; }
|
||||
.albums .album .tracklist ul li {
|
||||
display: block;
|
||||
height: 26px;
|
||||
position: relative;
|
||||
padding-left: 25px; }
|
||||
.albums .album .tracklist ul li:hover {
|
||||
cursor: pointer; }
|
||||
.albums .album .tracklist ul li:hover .track-container {
|
||||
background-color: #fafafa; }
|
||||
.albums .album .tracklist ul li:hover .track-container .fade {
|
||||
background: -moz-linear-gradient(left, rgba(250, 250, 250, 0) 0%, #fafafa 50%, #fafafa 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(250, 250, 250, 0)), color-stop(50%, #fafafa), color-stop(100%, #fafafa));
|
||||
background: -webkit-linear-gradient(left, rgba(250, 250, 250, 0) 0%, #fafafa 50%, #fafafa 100%);
|
||||
background: -o-linear-gradient(left, rgba(250, 250, 250, 0) 0%, #fafafa 50%, #fafafa 100%);
|
||||
background: -ms-linear-gradient(left, rgba(250, 250, 250, 0) 0%, #fafafa 50%, #fafafa 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00fafafa', endColorstr='#fafafa', GradientType=1);
|
||||
background: linear-gradient(left, rgba(250, 250, 250, 0) 0%, #fafafa 50%, #fafafa 100%); }
|
||||
.albums .album .tracklist ul li:first-child {
|
||||
border-top: none; }
|
||||
.albums .album .tracklist ul li.now .track-container {
|
||||
background-color: #e0f0fa; }
|
||||
.albums .album .tracklist ul li.now .track-container .fade {
|
||||
background: -moz-linear-gradient(left, rgba(224, 240, 250, 0) 0%, #e0f0fa 50%, #e0f0fa 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(224, 240, 250, 0)), color-stop(50%, #e0f0fa), color-stop(100%, #e0f0fa));
|
||||
background: -webkit-linear-gradient(left, rgba(224, 240, 250, 0) 0%, #e0f0fa 50%, #e0f0fa 100%);
|
||||
background: -o-linear-gradient(left, rgba(224, 240, 250, 0) 0%, #e0f0fa 50%, #e0f0fa 100%);
|
||||
background: -ms-linear-gradient(left, rgba(224, 240, 250, 0) 0%, #e0f0fa 50%, #e0f0fa 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00e0f0fa', endColorstr='#e0f0fa', GradientType=1);
|
||||
background: linear-gradient(left, rgba(224, 240, 250, 0) 0%, #e0f0fa 50%, #e0f0fa 100%); }
|
||||
.albums .album .tracklist ul li .add-track {
|
||||
display: none;
|
||||
float: left;
|
||||
padding: 1px 5px;
|
||||
margin: 3px 0 0 -22px; }
|
||||
.albums .album .tracklist ul li .track-container {
|
||||
height: 20px;
|
||||
padding: 5px 0 0 0;
|
||||
border-top: #e0e0e0 1px solid; }
|
||||
.albums .album .tracklist ul li .track-container > * {
|
||||
position: absolute; }
|
||||
.albums .album .tracklist ul li .track-container .fade {
|
||||
right: 0px;
|
||||
top: 6px;
|
||||
width: 80px;
|
||||
height: 16px;
|
||||
z-index: 20;
|
||||
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, white), color-stop(100%, white));
|
||||
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
|
||||
background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
|
||||
background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
|
||||
background: linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%, white 100%); }
|
||||
.albums .album .tracklist ul li .track-container .index {
|
||||
left: 22px;
|
||||
top: 9px;
|
||||
display: block;
|
||||
width: 15px;
|
||||
text-align: right;
|
||||
font-size: 10px;
|
||||
color: #505050; }
|
||||
.albums .album .tracklist ul li .track-container .trackname {
|
||||
left: 40px;
|
||||
top: 6px;
|
||||
width: 90%;
|
||||
height: 16px;
|
||||
overflow: hidden;
|
||||
z-index: 10; }
|
||||
.albums .album .tracklist ul li .track-container .length {
|
||||
right: 0px;
|
||||
top: 6px;
|
||||
height: 16px;
|
||||
z-index: 30; }
|
||||
@@ -1,8 +0,0 @@
|
||||
@import "common.css" all;
|
||||
@import "misc.css" all;
|
||||
@import "header.css" all;
|
||||
@import "player.css" all;
|
||||
@import "pulldown.css" all;
|
||||
@import "albums.css" all;
|
||||
@import "settings.css" all;
|
||||
@import "textpage.css" all;
|
||||
@@ -1,44 +0,0 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none; }
|
||||
|
||||
html, body {
|
||||
overflow: hidden; }
|
||||
|
||||
body {
|
||||
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
-moz-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
cursor: default;
|
||||
min-width: 1000px;
|
||||
width: 100%; }
|
||||
|
||||
.header-container {
|
||||
margin-right: 350px; }
|
||||
|
||||
.player-container {
|
||||
width: 350px;
|
||||
height: 600px;
|
||||
float: right;
|
||||
background-color: #222; }
|
||||
|
||||
.data-container {
|
||||
width: auto;
|
||||
margin-right: 350px;
|
||||
overflow-y: auto;
|
||||
min-width: 650px; }
|
||||
|
||||
.player {
|
||||
width: 100%;
|
||||
height: 120px; }
|
||||
|
||||
.playlist {
|
||||
width: 100%;
|
||||
overflow-y: auto; }
|
||||
|
||||
.subpages {
|
||||
display: none; }
|
||||
@@ -1,53 +0,0 @@
|
||||
.header-container .hello {
|
||||
display: none;
|
||||
float: right;
|
||||
margin: 6px 10px 0 0;
|
||||
color: #222; }
|
||||
.header-container .hello .greating {
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 8px; }
|
||||
.header-container .hello .greating span {
|
||||
border-bottom: #202020 1px dotted;
|
||||
cursor: pointer; }
|
||||
.header-container .hello .settings-button {
|
||||
float: right;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin: 1px 0;
|
||||
background-image: url(/images/icns/settings.png);
|
||||
cursor: pointer; }
|
||||
.header-container .navigation {
|
||||
background-color: #EEE;
|
||||
background-image: url(/images/concrete_wall_2.png);
|
||||
height: 30px; }
|
||||
.header-container .navigation li {
|
||||
display: block;
|
||||
float: left;
|
||||
width: auto;
|
||||
height: 30px;
|
||||
margin-left: 10px;
|
||||
color: #222;
|
||||
line-height: 30px;
|
||||
text-shadow: #666 0px 0px 0.5px; }
|
||||
.header-container .navigation li:hover {
|
||||
cursor: pointer;
|
||||
text-shadow: #666 0px 0px 2px; }
|
||||
.header-container .navigation li.logo {
|
||||
font-size: 20px;
|
||||
line-height: 32px;
|
||||
font-weight: bold;
|
||||
margin: -3px 1px 0 10px; }
|
||||
.header-container .navigation li.logo .version {
|
||||
float: right;
|
||||
font-size: 9px;
|
||||
font-weight: normal;
|
||||
margin: 10px 0 0 4px; }
|
||||
.header-container .navigation li.vk_auth {
|
||||
display: none; }
|
||||
.header-container .navigation li a {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
border-bottom: #a0a0a0 1px solid; }
|
||||
.header-container .navigation li a.a {
|
||||
border-bottom: #a0a0a0 1px dotted; }
|
||||
@@ -1,109 +0,0 @@
|
||||
.fullscreen {
|
||||
position: absolute;
|
||||
z-index: 9999;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
text-align: center;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5ffffff, endColorstr=#e5ffffff)"; }
|
||||
.fullscreen .inner {
|
||||
position: relative;
|
||||
top: 50%;
|
||||
margin-top: -50px;
|
||||
height: 100px; }
|
||||
|
||||
.button {
|
||||
display: inline;
|
||||
width: auto;
|
||||
padding: 5px 10px;
|
||||
border: 1px solid;
|
||||
cursor: pointer;
|
||||
border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px; }
|
||||
.button.gray {
|
||||
background-color: #e0e0e0;
|
||||
color: #404040;
|
||||
text-shadow: #d0d0d0 0px 1px 1px;
|
||||
border-color: #d0d0d0;
|
||||
box-shadow: #c0c0c0 1px 1px 0px; }
|
||||
.button.red {
|
||||
background-color: #fab0b0;
|
||||
color: #e05050;
|
||||
text-shadow: #c08080 0px 1px 1px;
|
||||
border-color: #eaa0a0;
|
||||
box-shadow: #da9090 1px 1px 0px; }
|
||||
.button.big {
|
||||
font-size: 22px; }
|
||||
|
||||
/* Scrollbars */
|
||||
.data-container .scrollbar-pane {
|
||||
margin-right: 8px; }
|
||||
.data-container .scrollbar-handle-container {
|
||||
width: 8px; }
|
||||
.data-container .scrollbar-handle {
|
||||
width: 8px; }
|
||||
.data-container .scrollbar-handle-container {
|
||||
background-color: #FFF; }
|
||||
.data-container .scrollbar-handle {
|
||||
background-color: #CCC; }
|
||||
.data-container .scrollbar-handle:hover {
|
||||
background-color: #999; }
|
||||
.data-container .scrollbar-handle.move {
|
||||
background-color: #AAA; }
|
||||
|
||||
.player-container .scrollbar-pane {
|
||||
margin-right: 8px; }
|
||||
.player-container .scrollbar-handle-container {
|
||||
width: 8px; }
|
||||
.player-container .scrollbar-handle {
|
||||
width: 8px; }
|
||||
.player-container .scrollbar-handle-container {
|
||||
background-color: #222; }
|
||||
.player-container .scrollbar-handle {
|
||||
background-color: #444; }
|
||||
.player-container .scrollbar-handle:hover {
|
||||
background-color: #666; }
|
||||
.player-container .scrollbar-handle.move {
|
||||
background-color: #888; }
|
||||
|
||||
.error_page {
|
||||
position: relative;
|
||||
width: 600px;
|
||||
text-align: center;
|
||||
top: 100px;
|
||||
left: 50%;
|
||||
margin-left: -300px; }
|
||||
.error_page h1 {
|
||||
font-size: 150px; }
|
||||
.error_page span {
|
||||
font-size: 24px; }
|
||||
|
||||
.kaboom {
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
clear: both; }
|
||||
|
||||
.auth-notice {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #60a0ff;
|
||||
color: #ffffff;
|
||||
top: 32px;
|
||||
left: 290px;
|
||||
line-height: 35px;
|
||||
padding-right: 10px;
|
||||
border: #4080dd 1px solid;
|
||||
border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
cursor: pointer; }
|
||||
.auth-notice .arrow {
|
||||
float: left;
|
||||
margin: -5px 10px 0 10px;
|
||||
font-size: 25px;
|
||||
font-weight: bold; }
|
||||
@@ -1,184 +0,0 @@
|
||||
@charset "UTF-8";
|
||||
.player-container .player .now-playing {
|
||||
position: relative;
|
||||
height: 30px;
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
line-height: 30px;
|
||||
overflow: hidden; }
|
||||
.player-container .player .now-playing .fade {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
width: 50px;
|
||||
height: 30px;
|
||||
z-index: 10;
|
||||
background: -moz-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(32, 32, 32, 0)), color-stop(50%, #202020), color-stop(100%, #202020));
|
||||
background: -webkit-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
background: -o-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
background: -ms-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00202020', endColorstr='#202020', GradientType=1);
|
||||
background: linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%); }
|
||||
.player-container .player .progress {
|
||||
width: 330px;
|
||||
height: 5px;
|
||||
background-color: #333;
|
||||
margin: 0 10px;
|
||||
cursor: pointer; }
|
||||
.player-container .player .progress .loaded {
|
||||
width: 0;
|
||||
height: 5px;
|
||||
background-color: #405050; }
|
||||
.player-container .player .progress .played {
|
||||
width: 0;
|
||||
height: 5px;
|
||||
background-color: #09A; }
|
||||
.player-container .player .controls {
|
||||
width: 290px;
|
||||
margin: 20px 95px; }
|
||||
.player-container .player .controls > * {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
cursor: pointer; }
|
||||
.player-container .player .controls .prev {
|
||||
background-image: url("/images/icns/prev.png"); }
|
||||
.player-container .player .controls .play {
|
||||
background-image: url("/images/icns/play.png"); }
|
||||
.player-container .player .controls .pause {
|
||||
background-image: url("/images/icns/pause.png");
|
||||
display: none; }
|
||||
.player-container .player .controls .next {
|
||||
background-image: url("/images/icns/next.png"); }
|
||||
.player-container .playlist .playlist-tracks {
|
||||
width: 343px; }
|
||||
.player-container .playlist .playlist-tracks li {
|
||||
display: block;
|
||||
height: 26px; }
|
||||
.player-container .playlist .playlist-tracks li .item {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 26px;
|
||||
color: #FFF; }
|
||||
.player-container .playlist .playlist-tracks li .item:hover {
|
||||
background-color: #444;
|
||||
cursor: default; }
|
||||
.player-container .playlist .playlist-tracks li .item:hover .fade {
|
||||
background: -moz-linear-gradient(left, rgba(64, 64, 64, 0) 0%, #404040 50%, #404040 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(64, 64, 64, 0)), color-stop(50%, #404040), color-stop(100%, #404040));
|
||||
background: -webkit-linear-gradient(left, rgba(64, 64, 64, 0) 0%, #404040 50%, #404040 100%);
|
||||
background: -o-linear-gradient(left, rgba(64, 64, 64, 0) 0%, #404040 50%, #404040 100%);
|
||||
background: -ms-linear-gradient(left, rgba(64, 64, 64, 0) 0%, #404040 50%, #404040 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00404040', endColorstr='#404040', GradientType=1);
|
||||
background: linear-gradient(left, rgba(64, 64, 64, 0) 0%, #404040 50%, #404040 100%); }
|
||||
.player-container .playlist .playlist-tracks li .item .dragbox {
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
left: 2px;
|
||||
width: 15px;
|
||||
height: 26px;
|
||||
background-image: url("/images/drag.png");
|
||||
cursor: move; }
|
||||
.player-container .playlist .playlist-tracks li .item .title {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 19px;
|
||||
z-index: 10;
|
||||
width: 316px;
|
||||
height: 26px;
|
||||
line-height: 26px;
|
||||
display: block;
|
||||
float: left;
|
||||
overflow: hidden; }
|
||||
.player-container .playlist .playlist-tracks li .item .title .data.artist, .player-container .playlist .playlist-tracks li .item .title .playtrack {
|
||||
border-bottom: #555 1px dotted;
|
||||
cursor: pointer; }
|
||||
.player-container .playlist .playlist-tracks li .item .duration {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 5px;
|
||||
z-index: 30;
|
||||
height: 26px;
|
||||
line-height: 26px; }
|
||||
.player-container .playlist .playlist-tracks li .item .remove {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 5px;
|
||||
z-index: 30;
|
||||
height: 15px;
|
||||
font-size: 11px;
|
||||
background-color: #622;
|
||||
color: #FFF;
|
||||
border: #822 1px solid;
|
||||
padding: 1px 2px 0 2px;
|
||||
border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-webkit-border-radius: 2px;
|
||||
cursor: pointer; }
|
||||
.player-container .playlist .playlist-tracks li .item .fade {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 20;
|
||||
width: 80px;
|
||||
height: 26px;
|
||||
background: -moz-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(32, 32, 32, 0)), color-stop(50%, #202020), color-stop(100%, #202020));
|
||||
background: -webkit-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
background: -o-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
background: -ms-linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00202020', endColorstr='#202020', GradientType=1);
|
||||
background: linear-gradient(left, rgba(32, 32, 32, 0) 0%, #202020 50%, #202020 100%); }
|
||||
.player-container .playlist .playlist-tracks li:nth-child(odd) .item {
|
||||
background-color: #2A2A2A; }
|
||||
.player-container .playlist .playlist-tracks li:nth-child(odd) .item .fade {
|
||||
background: -moz-linear-gradient(left, rgba(42, 42, 42, 0) 0%, #2a2a2a 50%, #2a2a2a 100%);
|
||||
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(42, 42, 42, 0)), color-stop(50%, #2a2a2a), color-stop(100%, #2a2a2a));
|
||||
background: -webkit-linear-gradient(left, rgba(42, 42, 42, 0) 0%, #2a2a2a 50%, #2a2a2a 100%);
|
||||
background: -o-linear-gradient(left, rgba(42, 42, 42, 0) 0%, #2a2a2a 50%, #2a2a2a 100%);
|
||||
background: -ms-linear-gradient(left, rgba(42, 42, 42, 0) 0%, #2a2a2a 50%, #2a2a2a 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#002a2a2a', endColorstr='#2a2a2a', GradientType=1);
|
||||
background: linear-gradient(left, rgba(42, 42, 42, 0) 0%, #2a2a2a 50%, #2a2a2a 100%); }
|
||||
.player-container .playlist .playlist-tracks li.now .item {
|
||||
color: #09A; }
|
||||
.player-container .additional-controls {
|
||||
width: 350px;
|
||||
height: 27px;
|
||||
background-color: #333;
|
||||
border-top: #444 1px solid; }
|
||||
.player-container .additional-controls .item {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
line-height: 26px;
|
||||
color: #FFF;
|
||||
-moz-opacity: 0.3;
|
||||
-ms-filter: ”alpha(opacity=30) ”;
|
||||
filter: alpha(opacity=30);
|
||||
opacity: 0.3; }
|
||||
.player-container .additional-controls .item:hover {
|
||||
-moz-opacity: 1;
|
||||
-ms-filter: ”alpha(opacity=100) ”;
|
||||
filter: alpha(opacity=100);
|
||||
opacity: 1;
|
||||
cursor: pointer; }
|
||||
.player-container .additional-controls .item.active {
|
||||
-moz-opacity: 0.8;
|
||||
-ms-filter: ”alpha(opacity=80) ”;
|
||||
filter: alpha(opacity=80);
|
||||
opacity: 0.8; }
|
||||
.player-container .additional-controls .item img {
|
||||
float: left;
|
||||
margin-top: 1px; }
|
||||
.player-container .additional-controls .item .annotation {
|
||||
float: left;
|
||||
margin-left: 2px; }
|
||||
.player-container .additional-controls .item#empty-playlist {
|
||||
float: right;
|
||||
margin-right: 10px; }
|
||||
.player-container .additional-controls .item#empty-playlist img {
|
||||
margin-top: 3px; }
|
||||
@@ -1,40 +0,0 @@
|
||||
.pulldown {
|
||||
display: none;
|
||||
position: relative;
|
||||
background-color: #ffffff;
|
||||
border-top: #c0c0c0 1px solid;
|
||||
border-bottom: #c0c0c0 1px solid;
|
||||
margin-right: 350px;
|
||||
padding: 25px;
|
||||
/* Search */ }
|
||||
.pulldown .pd-spinner {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: -32px 0 0 -32px; }
|
||||
.pulldown .search-container .spinner, .pulldown .search-container .artist_loading, .pulldown .search-container .artist_pics, .pulldown .search-container .suggestions {
|
||||
display: none; }
|
||||
.pulldown .search-container .spinner {
|
||||
margin: 70px 0 0 171px; }
|
||||
.pulldown .search-container .search_form .search_field {
|
||||
width: 300px;
|
||||
font-size: 24px;
|
||||
padding: 4px;
|
||||
border: #CCC 1px solid;
|
||||
border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px; }
|
||||
|
||||
.autocomplete {
|
||||
margin: 4px 0 0 -1px; }
|
||||
.autocomplete div {
|
||||
font-size: 24px;
|
||||
padding: 6px 5px;
|
||||
border-top: #BBB 1px solid;
|
||||
margin-bottom: 1px; }
|
||||
.autocomplete div:first-child {
|
||||
border: none; }
|
||||
.autocomplete div.selected {
|
||||
background-color: #DDD; }
|
||||
@@ -1,46 +0,0 @@
|
||||
.search-container {
|
||||
width: 425px;
|
||||
padding: 0 5px; }
|
||||
.search-container #search_form #search_field {
|
||||
width: 300px;
|
||||
font-size: 24px;
|
||||
padding: 4px;
|
||||
border: #CCC 1px solid;
|
||||
border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px; }
|
||||
.search-container .spinner {
|
||||
display: none;
|
||||
margin: 20px 0 0 175px; }
|
||||
.search-container .artist_loading {
|
||||
display: none;
|
||||
margin: 15px 0;
|
||||
font-size: 18; }
|
||||
.search-container .artist_pics {
|
||||
display: none; }
|
||||
.search-container .artist_pics .pic {
|
||||
float: left;
|
||||
width: 47px;
|
||||
height: 47px;
|
||||
overflow: hidden;
|
||||
margin: 0 5px 5px 0; }
|
||||
.search-container .artist_pics img {
|
||||
width: 47px; }
|
||||
.search-container .suggestions {
|
||||
display: none;
|
||||
width: 415px;
|
||||
text-align: left;
|
||||
font-size: 24px; }
|
||||
.search-container .suggestions div {
|
||||
margin: 15px 0; }
|
||||
.search-container .suggestions ul li {
|
||||
display: block;
|
||||
width: auto;
|
||||
margin-bottom: 6px; }
|
||||
.search-container .suggestions ul li .data.artist {
|
||||
color: #04F;
|
||||
border-bottom: #04F 1px dotted;
|
||||
cursor: pointer; }
|
||||
.search-container .suggestions ul li span {
|
||||
font-size: 14px;
|
||||
font-style: italic; }
|
||||
@@ -1,90 +0,0 @@
|
||||
.settings-container {
|
||||
margin: 25px; }
|
||||
.settings-container .tabs {
|
||||
height: 26px; }
|
||||
.settings-container .tabs > div {
|
||||
float: left;
|
||||
height: 25px; }
|
||||
.settings-container .tabs .left-space {
|
||||
width: 15px; }
|
||||
.settings-container .tabs .middle-space {
|
||||
width: 8px; }
|
||||
.settings-container .tabs .tab {
|
||||
position: relative;
|
||||
border-left: #DDD 1px solid;
|
||||
border-top: #DDD 1px solid;
|
||||
border-right: #DDD 1px solid;
|
||||
padding: 0 8px;
|
||||
line-height: 24px;
|
||||
margin-top: 2px;
|
||||
border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
background-color: #FAFAFA;
|
||||
cursor: pointer; }
|
||||
.settings-container .tabs .tab.active {
|
||||
z-index: 200;
|
||||
background-color: #FFF;
|
||||
border-left: #CCC 1px solid;
|
||||
border-top: #CCC 1px solid;
|
||||
border-right: #CCC 1px solid;
|
||||
border-bottom: #FFF 6px solid;
|
||||
margin-top: -2px;
|
||||
line-height: 29px;
|
||||
font-weight: bold;
|
||||
cursor: default; }
|
||||
.settings-container .form-container {
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
height: 500px;
|
||||
border-top: #CCC 1px solid; }
|
||||
.settings-container .form-container .form {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
left: 0;
|
||||
width: 100%; }
|
||||
.settings-container .form-container .form .field {
|
||||
height: 40px;
|
||||
margin-bottom: 10px;
|
||||
clear: both; }
|
||||
.settings-container .form-container .form .field .label {
|
||||
float: left;
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
width: 140px;
|
||||
padding: 3px 6px;
|
||||
border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
background-color: #EAEAEA;
|
||||
margin-right: -10px; }
|
||||
.settings-container .form-container .form .field .value {
|
||||
float: left; }
|
||||
.settings-container .form-container .form .field .value input[type="text"] {
|
||||
font-size: 24px;
|
||||
padding: 4px;
|
||||
background-color: #ffffff;
|
||||
color: #202020;
|
||||
border: #CCC 1px solid;
|
||||
border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
width: 300px; }
|
||||
.settings-container .form-container .form .field .value select {
|
||||
font-size: 24px;
|
||||
background-color: #ffffff;
|
||||
color: #202020;
|
||||
border: #CCC 1px solid;
|
||||
width: 310px;
|
||||
height: 38px; }
|
||||
.settings-container .form-container .form .field .action-button {
|
||||
float: left;
|
||||
margin: 6px 0 0 5px; }
|
||||
.settings-container .form-container .form .field .saved {
|
||||
float: left; }
|
||||
.settings-container .form-container .logout {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
right: 0; }
|
||||
.settings-container .forms {
|
||||
display: none; }
|
||||
@@ -1,2 +0,0 @@
|
||||
.textpage {
|
||||
margin: 25px; }
|
||||
Reference in New Issue
Block a user