-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
50 lines (45 loc) · 778 Bytes
/
index.css
File metadata and controls
50 lines (45 loc) · 778 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
html, body {
width: 100%;
height: 100%;
}
.container {
border: solid lightgray 3px;
width: 400px;
height: 400px;
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.container svg {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
svg.base path {
stroke: black;
stroke-width: 2px;
opacity: 0.5;
}
@keyframes blink {
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0; }
}
svg.intersections {
animation-name: blink;
animation-duration: 5s;
animation-iteration-count: infinite;
}
.utils{
position: fixed;
margin-top: -30px;
font: sans-serif;
}
label{
position: relative;
top:-1px;
margin-left: 20px;
}