forked from Adarshswain/musicgallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (90 loc) · 1.86 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
* {
padding: 0;
margin: 0;
}
.container {
width: auto;
}
h1 {
text-align: center;
font-size: 1.8rem;
color: white;
padding: 20 0px;
}
body {
background-color: black;
background-repeat: no-repeat;
background-size: 100% 100%;
}
main {
width: 90%;
height: 550px;
margin: auto;
background-color: purple;
border-radius: 1rem;
border: 5px solid white;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
padding: 1%;
/*to wrap all the utem in the div to a particular width in the border */
}
.info {
color: grey;
text-align: right;
margin-right: 4rem;
margin-top: 4px;
}
.song {
width: 30%;
height: 160px;
box-shadow: 2px 2px 5px white;
border-radius: 5%;
cursor: pointer;
}
.a {
background-image: url('images/title.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.b {
background-image: url('images/taare_gin.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.c {
background-image: url('images/khulke_jeene_ka.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.d {
background-image: url('images/afreeda.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.e {
background-image: url('images/main_tumhara.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.f {
background-image: url('images/mera_naam_kizzie.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.g {
background-image: url('images/kar_band.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.h {
background-image: url('images/raja_ko_rani.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.i {
background-image: url('images/maskhari.jfif');
background-repeat: no-repeat;
background-size: 100% 100%;
}