-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-player-css.css
More file actions
131 lines (127 loc) · 2.42 KB
/
single-player-css.css
File metadata and controls
131 lines (127 loc) · 2.42 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
:root{
--background-color-blue:#040430;
--text-color-white:white;
}
/* section */
/* single-player-content */
#single-player-content{
height:50vh;
background-color:#1d2f57;
}
/* single-player poster */
#single-player-poster{
background-image:url('https://th.bing.com/th/id/OIP.qGj1dy1IkE9omdsCzAQBQAAAAA?pid=ImgDet&rs=1');
width:40%;
}
/* single-player-describe */
#single-player-describe{
color:lightgrey;
width:60%;
padding:5%;
font-size:80%;
}
/* single-player-describe followers*/
#followers{
color:var(--text-color-white);
margin-bottom:0%;
}
#followers span{
font-size:80%;
float:right;
}
/* single-player-describe play all button */
#play-all{
background-image:linear-gradient(to right,darkblue,#b148b1);
border:none;
color:var(--text-color-white);
margin-top:4%;
padding:3% 10%;
}
#play-all:hover{
opacity:50%;
}
/* single-player-describe - "Follow" button */
#follow{
background-color:transparent;
border:none;
color:var(--text-color-white);
margin-top:4%;
margin-left:10%;
}
/* Single-player-playlist */
/* Single player playlist-list */
#playlist-component{
display: flex;
flex-direction:column;
list-style:inside decimal-leading-zero;
padding:0%;
}
#playlist-component li{
height:4.5vh;
font-size:80%;
color:lightgrey;
background-image:linear-gradient(#4a4a60,black 180%);
margin-top:2%;
padding:1%;
}
#playlist-component li img{
height:100%;
width:auto;
margin-right:5%;
}
/* Aside */
/* Similar Artists */
#similar-artists{
list-style-type: none;
padding:0%;
}
#similar-artists li{
margin:5% 0%;
}
/* Song Image div */
.similar-artists-1{
height:auto;
width:35%;
background-image: url('https://www.bing.com/th?id=AMMS_feca24ae537f3f5d8309c2f83bac3216&w=72&h=72&c=7&rs=1&qlt=80&cdv=1&dpr=1.5&pid=16.1');
background-size: cover;
}
.play-button-1{
position:absolute;
display:none;
border:none;
background-color:transparent;
transform:translate(100%,250%);
}
.play-button-1 i{
color:var(--text-color-white);
}
.similar-artists-1:hover #play{
display:block;
}
/* Song Description */
.onism-dec{
width:70%;
margin:6%;
}
/* other options */
.Onism-button-1:hover+.dropdown-content{
display:block;
background-color:var(--text-color-white);
color:black;
}
/* other options-dropdown */
.dropdown-content{
width:12%;
list-style: none;
display:none;
position: absolute;
padding: 0%;
}
.dropdown-content li{
padding:1%;
border-bottom: 1px solid lightgrey;
}
.dropdown-content li i{
color:lightgrey;
padding:5%;
}