-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.css
103 lines (93 loc) · 1.56 KB
/
music.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
* {
margin: 0px;
padding: 0px;
}
.bg {
background: rgb(7, 122, 117);
width: 100%;
}
.logo {
font-size: 50px;
padding: 30px;
text-align: center;
color: rgb(141, 231, 227);
}
.search {
width: 55%;
background: red;
/* font-size: large; */
margin-left: 20%;
margin-top: 20px;
font-size: 0px;
}
.search_box {
width: 97%;
height: 35px;
font-family: "Courier New", Courier, monospace;
border: none;
text-indent: 30px;
display: inline-block;
vertical-align: top;
outline: none;
}
.search_btn {
width: 3%;
border: none;
height: 35px;
}
.songs {
margin-top: 40px;
width: 100%;
/* background: #c46868; */
}
.song {
width: 250px;
background: rgb(26, 181, 174);
margin-left: 7%;
margin-bottom: 30px;
display: inline-block;
border-radius: 10px;
}
.song_img {
width: 90%;
height: 300px;
background: white;
margin-left: 5%;
overflow: hidden;
}
.song_img img {
width: 100%;
height: 300px;
transition: 0.4s;
}
.song_img img:hover {
transform: scale(1.3);
}
.audio {
width: 90%;
margin-left: 5%;
margin-top: 10px;
margin-bottom: 10px;
height: 35px;
}
.song p {
font-size: 20px;
text-align: center;
margin-top: 10px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: 200;
}
@media(max-width:600px){
.search{
width:65%;
}
.songs{
display:flex;
flex-direction: column;
align-items: center;
}
.song{
width:65%;
margin-bottom:60px;
}
}