-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextra.css
More file actions
54 lines (52 loc) · 812 Bytes
/
Copy pathextra.css
File metadata and controls
54 lines (52 loc) · 812 Bytes
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
@-webkit-keyframes blink {
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes blink {
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
blink {
-webkit-animation: blink 2s steps(1, start) infinite;
animation: blink 2s steps(1, start) infinite;
}
#money-link{
color:yellow;
font-size:30px;
font-weight: bold;
}
canvas{
display:block;
}
#money, #money-disp{
font-size:60px;
font-family:sans-serif;
font-weight:bold;
color:gold;
text-shadow:0 5px 3px rgba(0,0,0,0.5);
animation:breeze 1s infinite ease;
float:left;
}
@keyframes breeze{
0% { font-size:60px;}
50% { font-size:70px;}
100% { font-size:60px;}
}
.m-block{
width:240px;
position:absolute;
top:10px;
left:10px;
}
.money2{
float:right;
}
#money-disp{position:absolute;left:40%;top:60%;display: none;}