-
Notifications
You must be signed in to change notification settings - Fork 3
/
content.module.css
98 lines (92 loc) · 1.55 KB
/
content.module.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
.talkContainer {
position: fixed;
z-index: -1;
right: 24px;
bottom: 24px;
width: 120px;
height: 120px;
border-radius: 8px;
/* background-color: red; */
}
.recordPlayer {
border-radius: 50%;
/* border: 4px solid rgb(187, 187, 187); */
}
.playerController {
width: 80px;
transform-origin: 0 0;
position: absolute;
top: -58px;
right: 0;
transform: rotate(-5deg); /*17deg*/
cursor: pointer;
}
.settingsButton {
width: 24px;
position: absolute;
bottom: 2px;
right: -6px;
z-index: 1;
/* color: #aaa; */
}
.settingsButton path {
fill: #5f6570;
}
.innerContainer {
cursor: pointer;
}
.innerPlayerBg {
width: 80px;
position: absolute;
left: 20px;
top: 20px;
border-radius: 50%;
/* z-index: -1; */
background-color: rgba(255, 192, 203, 0.2);
backdrop-filter: blur(6px);
}
.breathBg {
animation: breath 1s ease infinite;
}
.innerPlayerBg path {
fill: #fff;
}
.controllerOnPlayer {
transform: rotate(17deg); /**/
transition: all .6s;
}
.playerPlaying {
transform-origin: center;
animation: playerAni 6s linear infinite;
}
.playerPlayingReverse {
animation: playerAniReverse 3s linear infinite;
}
@keyframes playerAni {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes breath {
0%,
100% {
background-color: rgba(255, 192, 203, 0.2);
}
50% {
background-color: rgba(135, 206, 235, 0.2);
}
}
@keyframes playerAniReverse {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
.rightMenuContainer{
width: 400px;
}