-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (112 loc) · 2.21 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
body {
height: 100%;
margin: 0;
background-color: hsl(225, 100%, 94%);
font-family: "Red Hat Display", sans-serif;
font-weight: 400;
}
.images_backgrounds {
position: relative;
z-index: -1;
}
.images_backgrounds img {
transform: scaleX(1.665);
}
.main {
border-radius: 20px;
background-color: white;
width: 20em;
height: 33em;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%) scale(1.3);
}
.main_svg {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
width: 20em;
height: 10em;
}
h1 {
text-align: center;
font-weight: bold;
font-size: 18px;
}
.description {
text-align: center;
font-size: 15px;
opacity: 0.8;
color: rgb(88, 88, 88);
}
.box {
border-radius: 10px;
background-color: hsl(225, 100%, 98%);
margin: 0 4%;
margin-top: 25px;
display: flex;
}
.music_svg {
width: 40px;
height: 40px;
padding-left: 10px;
margin-top: 15px;
}
.box_button {
color: rgb(83, 3, 255);
margin-left: auto;
margin-right: 12px;
margin-top: 22px;
}
.box_info {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 16px;
margin-bottom: 15px;
margin-left: 10px;
}
.box_info h4 {
margin: 0;
margin-bottom: 5px;
font-size: 12px;
}
.box_info .price {
margin: 0;
}
.button_1 {
color: white;
background-color: rgb(55, 0, 255);
text-align: center;
border-radius: 8px;
padding-top: 8px;
padding-bottom: 8px;
margin: 20px;
margin-left: auto;
margin-right: auto;
width: 15em;
font-weight: 500;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.button_1:hover {
background-color: rgb(95, 51, 252);
transition: all 0.3s;
transform: scale(1.05);
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.button_2 {
text-align: center;
font-size: small;
margin-left: auto;
margin-right: auto;
width: 7em;
color: gray;
margin-bottom: 20px;
transform: scale(1);
font-weight: 500;
}
.button_2:hover {
color: rgb(106, 106, 106);
transition: all 0.3s;
transform: scale(1.05);
}