-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathday5_Project.css
More file actions
110 lines (93 loc) · 1.47 KB
/
Copy pathday5_Project.css
File metadata and controls
110 lines (93 loc) · 1.47 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
*{
margin: 0px;
padding: 0px;
}
.bg{
padding: 30px;
background-color: #485461;
}
.logo{
width: 100;
height: 100px;
/*background-color: red;*/
font-size: 30px;
color: white;
font-family: sans-serif;
font-align: centre;
}
.search{
width: 70%;
height: 50px;
background-color: red;
margin-left: 15%;
/*display: inline-block;*/
font-size: 0px;
}
.search_field{
height: 50px;
width: 90%;
font-size: 20px;
font-family: segoe UI;
font-weight: 200;
text-indent: 30px;
/*display: inline-block;*/
vertical-align: top;
outline: none;
border: none;
}
.search_btn{
border: none;
height: 50px;
width: 10%;
background-color: white;
}
.search_icon{
width: 30px;
}
.songs{
width: 90%;
/*height: auto;
background-color: red;*/
margin-top: 30px;
padding-top: 30px;
padding-bottom: 30px;
margin-left: 5%;
}
.song{
width: 20%;
/*height: 500px;*/
background-color: pink;
padding-top: 20px;
padding-bottom: 20px;
display: inline-block;
}
.song_img{
width: 80%;
height: 350px;
background-color: violet;
margin-left: 10%;
overflow: hidden;
}
.song_player{
width: 80%;
height: auto;
background-color: black;
margin-left: 10%;
margin-top: 20px;
/*text-align: centre;
text-indent: 30px;*/
font-family: segoe UI;
font-weight: 200;
font-size: 30px;
}
.song_thumbnail{
width: 100%;
transition: .45s;
}
.song_thumbnail:hover{
transform: scale(1.7);
}
.audio{
width: 100%;
margin-top: 10px;
}