-
Notifications
You must be signed in to change notification settings - Fork 0
/
mandelbrot.css
71 lines (62 loc) · 1.02 KB
/
mandelbrot.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
#mandelbrot-canvas {
padding: 0;
position: absolute;
width: 100%;
height: 100%;
cursor: crosshair;
}
body, html {
height: 100%;
}
body {
margin: 0;
}
@keyframes fade-in {
from {
opacity: 0
}
to {
opacity: 1
}
}
.fade-in {
animation: fade-in 0.6s;
}
@keyframes fade-out {
0% {
opacity: 1
}
50% {
opacity: 0
}
100% {
opacity: 0
}
}
.fade-out {
animation: fade-out 1.2s;
}
#mandel-message-container {
top: 10px;
position: absolute;
width: 100%;
text-align: center;
pointer-events: none;
}
#mandel-message-subcontainer {
width: 40%;
display: inline-block;
text-align: center;
}
.mandel-message {
font-family: Roboto, monospace;
border: 0.2em rgba(100%, 100%, 100%, 0.8) solid;
box-sizing: border-box;
background-color: rgba(0%, 0%, 0%, 0.8);
color: white;
border-radius: 0.4em;
padding: 0.2em 0 0.25em;
margin-top: 0.4em;
width: 100%;
text-align: center;
}