forked from a5hi5/musify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (112 loc) · 1.98 KB
/
style.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
* {
margin: 0%;
padding: 0px;
}
.container {
height: 100vh;
width: 100vw;
background-color: rgb(19, 19, 20);
display: flex;
}
/*main area styling starts*/
.main_area {
height: 90vh;
width: 70%;
}
.header {
font-family: Georgia, "Times New Roman", Times, serif;
padding: 20px;
font-size: 60px;
color: aqua;
display: flex;
align-items: center;
font-weight: bold;
padding-left: 100px;
}
/*Songs card styling starts*/
.song_list {
width: 100%;
height: auto;
display: flex;
padding: 50px;
background-color: rgb(19, 19, 20);
align-items: flex-start;
flex-wrap: wrap;
}
.audio {
width: 220px;
margin: 20px;
height: 350px;
overflow: hidden;
color: white;
background-color: rgb(19, 19, 1);
}
.thumbnail {
width: 100%;
height: 250px;
}
.thumbnail > img {
width: 100%;
}
.play {
padding: 10px 40px;
margin-top: 5px;
border: 2px solid;
margin-left: 40px;
border-radius: 10px;
text-transform: uppercase;
background-color: transparent;
cursor: pointer;
color: white;
transition: 0.3s;
}
.audio_details > h1 {
margin-left: 5px;
}
/*songs card styling ends*/
.play:hover {
background-color: greenyellow;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background-color: white;
border-radius: 20%;
}
/*main area styling ends*/
/*side content styling starts*/
.side_content {
width: 30%;
background-color: red;
height: 1010px;
color: white;
}
.side_content > img {
width: 100%;
}
.side_thumbnail {
margin: 40px;
width: 300px;
display: flex;
align-items: center;
height: 300px;
background-color: aqua;
}
.side_thumbnail > img {
width: 100%;
}
.playing {
font-size: xx-large;
color: chartreuse;
text-align: center;
font-weight: bolder;
padding: 30px;
}
.audio_play {
width: 100%;
}
.side_content > h1 {
margin: 10px;
}
/*Side content styling ends*/