-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (45 loc) · 1.23 KB
/
Copy pathstyle.css
File metadata and controls
53 lines (45 loc) · 1.23 KB
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
body {
background: #F2F2F2;
color: #333;
font-family: "Helvetica", Arial,sans-serif;
font-size: 1.2em;
}
input {
font-size: 1em;
padding: 5px;
}
header {
width:600px;
margin: 0 auto;
}
h1, form {
text-align: center;
}
#export {
display: none;
}
#results {
margin: 20px;
overflow: scroll;
border: 2px solid black;
color: #999;
padding: 20px;
}
#url {
width: 70%;
}
.visualizeRevTree {position: relative}
.visualizeRevTree * {margin: 0; padding: 0; font-size: 10px}
.visualizeRevTree line{stroke: #000; stroke-width: .10}
.visualizeRevTree div{position: relative; }
.visualizeRevTree circle{stroke: #000; stroke-width: .10}
.visualizeRevTree circle.leaf{fill: #008000;}
.visualizeRevTree circle.winner{fill: #FF0000}
.visualizeRevTree circle.deleted{fill: #808080}
.visualizeRevTree circle{transition: .3s}
.visualizeRevTree circle.selected{stroke-width: .3}
.visualizeRevTree div.box{background: #ddd; border: 1px solid #bbb; border-radius: 7px; padding: 7px; position: absolute;}
.visualizeRevTree .editor {width: 220px}
.visualizeRevTree .editor dt{width: 100px; height: 15px; float: left;}
.visualizeRevTree .editor dd{width: 100px; height: 15px; float: left;}
.visualizeRevTree .editor input{width: 100%; height: 100%}