blob: 5b6e994ad84fb6326b5c61986815ad96d0eabd3c (
plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
.tile_svg {
float: left;
}
#intern {
position:relative;
top:60px;
width: 100%;
height: 100%;
color: orange;
border: 0px;
overflow: auto;
background: white;
}
.datasheet .header {
color: white;
font-family: Arial;
font-weight: bold;
font-size: 150%;
line-height: 200%;
background-color: grey;
margin-top: 15px;
margin-bottom: 5px;
padding-left: 10px;
}
.datasheet .subheader {
color: blue;
font-family: Arial;
font-weight: bold;
line-height: 200%;
background-color: lightgrey;
margin-top: 5px;
margin-bottom: 5px;
}
.datasheet .data {
font-family: monospace;
margin-bottom: 5px;
}
.datasheet .data *:nth-child(even) {
background: #FFFFFF;
}
.datasheet .data *:nth-child(odd) {
background: #EFEFEF;
}
.datasheet .data .insert {
color: #006000;
}
.datasheet .data .remove {
color: #600000;
}
.datasheet .data .change {
color: #000060;
}
.split {
position: fixed;
z-index: 1;
top: 0;
padding-top: 14px;
}
.left {
left: 0;
}
.right {
right: 0;
width: 30%;
height: 90%;
}
#svg_ui_overlay {
position:absolute;
right:0;
top:0;
z-index:70;
color: rgb(255,255,100);
font-family:monospace;
background-color: #404040a0;
}
#svg_ui_slider {
width:90%;
}
.svg_invalidated {
fill: white;
font-family:monospace;
}
.svg_quadtree {
fill: none;
stroke-width: 1;
stroke: orange;
}
.svg_changed_prim {
stroke: red;
stroke-width: 2.0;
}
|