summaryrefslogtreecommitdiff
path: root/themes/LoveIt/assets/lib/aplayer/dark.scss
blob: bff3cdd103ee116218ddb571d884b123af47c5ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[theme=dark] .aplayer {
  background: #212121;

  &.aplayer-withlist {
    .aplayer-info {
      border-bottom-color: #5c5c5c;
    }
  }

  &.aplayer-fixed {
    .aplayer-list {
      border-color: #5c5c5c;
    }
  }

  .aplayer-body {
    background-color: #212121;
  }

  .aplayer-info {
    border-top-color: #212121;
  }

  .aplayer-info {
    .aplayer-music {
      .aplayer-title {
        color: #fff;
      }

      .aplayer-author {
        color: #fff;
      }
    }

    .aplayer-controller {
      .aplayer-time {
        color: #eee;

        .aplayer-icon {
          path {
            fill: #eee;
          }
        }
      }
    }
  }

  .aplayer-list {
    background-color: #212121;

    &::-webkit-scrollbar-thumb {
      background-color: #999;
    }

    &::-webkit-scrollbar-thumb:hover {
      background-color: #bbb;
    }

    li {
      color: #fff;
      border-top-color: #666;

      &:hover {
        background: #4e4e4e;
      }

      &.aplayer-list-light {
        background: #6c6c6c;
      }

      .aplayer-list-index {
        color: #ddd;
      }

      .aplayer-list-author {
        color: #ddd;
      }
    }
  }

  .aplayer-lrc {
    text-shadow: -1px -1px 0 #666;

    &:before {
      background: -moz-linear-gradient(top, rgba(33,33,33,1) 0%, rgba(33,33,33,0) 100%);
      background: -webkit-linear-gradient(top, rgba(33,33,33,1) 0%,rgba(33,33,33,0) 100%);
      background: linear-gradient(to bottom, rgba(33,33,33,1) 0%,rgba(33,33,33,0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#212121', endColorstr='#00212121',GradientType=0 );
    }

    &:after {
      background: -moz-linear-gradient(top, rgba(33,33,33,0) 0%, rgba(33,33,33,0.8) 100%);
      background: -webkit-linear-gradient(top, rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);
      background: linear-gradient(to bottom, rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212121', endColorstr='#cc212121',GradientType=0 );
    }

    p {
      color: #fff;
    }
  }

  .aplayer-miniswitcher {
    background: #484848;

    .aplayer-icon {
      path {
        fill: #eee;
      }
    }
  }
}