-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
176 lines (153 loc) · 2.71 KB
/
footer.css
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: #111727;
color: white;
height: 60px;
padding: 5px 5px;
}
/* MASTER PLAY */
footer .master_play {
display: flex;
align-items: center;
padding: 0px 20px;
padding-top: 10px;
}
/* WAVE */
footer .master_play .wave {
width: 30px;
height: 30px;
padding-bottom: 5px;
display: flex;
align-items: flex-end;
margin-right: 10px;
}
footer .master_play .wave .wave1 {
width: 3px;
height: 10px;
margin-right: 3px;
border-radius: 10px 10px 0px 0px;
background: #36e2ec;
/* animation: wave .5s linear infinite; */
animation: unset;
}
footer .master_play .wave .wave1:nth-child(2) {
height: 13px;
margin-right: 3.5px;
animation-delay: 0.4s;
}
footer .master_play .wave .wave1:nth-child(3) {
height: 8px;
animation-delay: 0.8s;
}
/* Javascript clases for wave */
footer .master_play .active1 .wave1 {
animation: wave 0.5s linear infinite;
}
footer .master_play .active1 .wave1:nth-child(2) {
animation-delay: 0.4s;
}
footer .master_play .active1 .wave1:nth-child(3) {
animation-delay: 0.8s;
}
/* For animation of waves */
@keyframes wave {
0% {
height: 10px;
}
50% {
height: 15px;
}
100% {
height: 10px;
}
}
/* MASTER PLAY IMAGE */
footer .master_play img {
width: 35px;
height: 35px;
}
/* MASTER PLAY - SONG NAME */
footer .master_play h5 {
width: 130px;
font-size: 13px;
margin-left: 15px;
color: #fff;
line-height: 17px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
footer .master_play h5 .current_song_subtitle {
font-size: 11px;
color: #a4a9b8;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* CURRENT SONG */
.song-content {
width: 90%;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.current-song {
margin-left: 50px;
}
.current-song audio {
width: 500px;
height: 27px;
border-radius: 20px;
box-shadow: 10px 35px 70px 10px rgb(248, 193, 202);
}
.icon {
color: #a4a9b8;
font-size: 1.2rem;
cursor: pointer;
outline: none;
}
.icon i {
margin: 5px;
}
.uil-heart-alt:hover {
color: #fff;
}
.uil-repeat:hover {
color: #fff;
}
/* MEDIA QUERIES FOR FOOTER */
@media screen and (max-width: 900px) {
.current-song audio {
width: 300px;
}
}
@media screen and (max-width: 670px) {
.icon {
display: none;
}
.current-song audio {
width: 280px;
}
}
@media screen and (max-width: 530px) {
.current-song audio {
width: 250px;
}
footer .master_play .wave {
display: none;
}
}
@media screen and (max-width: 440px) {
footer h5 {
display: none;
}
}
@media screen and (max-width: 375px) {
.current-song audio {
width: 180px;
}
}