-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.css
82 lines (76 loc) · 1.5 KB
/
player.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
#alien {
background-color: rgb(63, 161, 227);
}
#logo {
width: 7%;
margin-left: 2%;
margin-top: 1%;
}
#avatar
{
position: absolute;
margin-left: auto;
margin-right: auto;
margin-top: 20%;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 35%;
height: 60%;
background-color: white;
border-color: rgb(255, 288, 0);
border-style: solid;
border-width: 5px;
border-radius: 5%;
text-align: center;
}
#circle
{
position: absolute;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100px;
width: 100px;
fill: rgb(255, 288, 0);
}
/**
Classe da aggiungere a runtime quando il sistema è in ascolto
**/
.pulsate-fwd {
-webkit-animation: pulsate-fwd 800ms infinite reverse forwards;
animation: pulsate-fwd 800ms infinite reverse forwards;
}
@-webkit-keyframes pulsate-fwd {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes pulsate-fwd {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}