-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (84 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (84 loc) · 1.76 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root{
--maincol:#353D2F;
--seccol:#9CFC97;
--thirdcol:#515B3A;
--fourthcol:#E6FAFC;
}
.main{
display:flex;
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
align-content: center;
background-color:var(--fourthcol);
}
.card-container{
display: flex;
flex-direction:column;
text-align: center;
align-content: center;
background-color:var(--seccol);
width: 200px;
/* height:400px; */
color: var(--maincol);
border-radius: 15px;
box-shadow: 2px 2px 35px 6px rgba(136,128,128,1);
}
.image-container{
display: flex;
/* flex-direction: row; */
/* text-align: center; */
margin: auto;
overflow: hidden;
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
box-shadow: 1px 1px 5px 0px rgb(0, 0, 0);
/* background-color:rgba(136,128,128,1); */
}
.image-container img{
display: block;
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
align-self: auto;
border-radius: 50%;
}
.animate{
animation: rotateimage 3s linear infinite;
/* transition:all 3s ease-in-out; */
}
@keyframes rotateimage {
from{transform: rotate(0deg);}
to{transform: rotate(360deg);}
}
.card-container .author-name{
text-shadow:0px 10px 40px rgb(0, 0, 0) ;
opacity:0.7;
/* margin: 10px; */
font-size:14px;
}
.card-container .song-name{
text-shadow:0px 10px 40px rgb(0, 0, 0) ;
text-transform: uppercase;
margin: 10px;
font-size:16px;
}
.play-section{
margin-bottom:10px;
}
.fa{
font-size:20px;
/* margin-bottom:20px; */
cursor: pointer;
}
.fa-play-circle,.fa-pause-circle{
font-size:30px;
}