-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
86 lines (71 loc) · 1.37 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
@-webkit-keyframes flash {
0% {
opacity:1;
}
100% {
opacity: 0;
}
}
@-moz-keyframes flash {
0% {
opacity:1;
}
100% {
opacity: 0;
}
}
.flash {
-webkit-animation-delay: 0;
-mmoz-animation-delay: 0;
-webkit-animation-duration: 0.8s;
-moz-animation-duration: 0.8s;
-webkit-animation-name: flash;
-moz-animation-name: flash;
-webkit-animation-fill-mode: forwards; /* this prevents the animation from restarting! */
-moz-animation-fill-mode: forwards; /* this prevents the animation from restarting! */
}
html {
background: black;
}
.controls {
background: rgb(33, 33, 33);
padding: 5px;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 23px;
}
.setup, .range {
display: inline;
color: rgb(179, 179, 179);
padding: 0 10px;
}
label, button {
padding-right: 4px;
vertical-align: middle;
}
input[type=number] {
width: 40px;
text-align: right;
}
input {
vertical-align: middle;
margin-right: 10px;
}
.bugs {
position: absolute;
top: 33px;
left: 0;
bottom: 0px;
width: 100%;
}
.bug-wrapper {
display: inline-block;
}
.bug {
width: 100%;
height: 100%;
opacity: 0;
background-image: radial-gradient(circle,rgba(102, 242, 31, 1) 0%, rgba(102, 242, 31, 0.5) 19%, rgba(0, 0, 0, 0) 40%);
}