-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNew_style.css
More file actions
133 lines (133 loc) · 2.66 KB
/
New_style.css
File metadata and controls
133 lines (133 loc) · 2.66 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
132
133
@import url(http://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(http://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
* {
padding:0%;
margin:0%;
}
body {
width:100%;
height:100vh;
background-color:#141413;
font-family:"Poppins",sans-serif;
display:flex;
align-items: center;
justify-content: center;
}
header{
width:85%;
height:95%;
/*border:1px solid white;*/
display:flex;
}
header .menu{
overflow:auto;
height:100%;
width:25%;
background-color: #111727;
/*border: 1px solid white;*/
}
header .song{
height:95%;
width:70%;
background-color: #181f35;
overflow:scroll;
display:flex;
}
header .menu h1{
font-size: 20px;
margin: 15px 0px 0px 20px;
font-weight: 500;
color:#ffffff;
}
header .menu .playlist h4{
margin:40px 0px 0px 20px;
font-size:14px;
font-weight:400;
color:#4c5262;
cursor: pointer;
display:flex;
align-items: center;
transition: .3s linear;
}
header .menu .playlist h4:hover{
color:#ffffff;
}
header .menu .playlist h4 span{
position:relative;
margin-right: 35px;
}
header .menu .playlist h4 span::before{
content:'';
position:absolute;
width:4px;
height:5px;
border:2px solid #4c5262;
border-radius: 50%;
transition: .3s linear;
}
header .menu .playlist h4:hover span::before{
border:2px solid #ffffff;
}
header .menu .playlist h4 .bi{
display:none;
}
header .menu .playlist .active{
color: #36e2ec;
}
header .menu .playlist .active span{
display: none;
}
header .menu .playlist .active .bi{
display: flex;
margin-right: 20px;
}
header .song{
width:75%;
background-color: #181f35;
height:100%;
}
header .song table,tr,td{
/*border:1px solid white;*/
padding:35px 25px 35px 25px;
}
header div.desc {
text-align: center;
}
header div.desc h5{
font-size: 20px;
color:#ffffff;
}
header div.desc .subtitle{
font-size: 15px;
color: #4c5262;
}
header table img{
width: 100px;
height:100px;
display: block;
margin-left: auto;
margin-right: auto;
}
header table {
border-collapse:collapse;
margin-left:50px;
margin-top: 40px;
}
header table td:hover img{
opacity: 0.3;
transition:0.3s linear;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #111727;
border-radius:10px;
}
::-webkit-scrollbar-thumb {
background: #212c4d;
border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
background: #888;
}