-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiagstyle.css
76 lines (60 loc) · 1009 Bytes
/
diagstyle.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
#repartition {
border: 3px solid black;
border-collapse : collapse;
}
#repartition > tbody> tr >td {
border : 3px solid black;
}
svg > g {
cursor: move;
}
rect[id^=sizer] {
cursor: se-resize;
}
ul{
list-style-type:none;
}
li{
display:inline;
}
ul li span{
background-color:#6495ED;
color:black;
text-decoration:none;
text-align:center;
padding:5px;
border:2px solid;
}
ul li a:hover{
background-color:#D3D3D3;
border-color:#696969 #DCDCDC #DCDCDC #696969;
}
svg{
display: inline-block;
vertical-align: middle;
/* user-select: none;*/
}
/*Cf RECT_STROKE_WIDTH = 6 in Javascript code. */
rect{
fill: rgb(0,0,255);
stroke-width:6;
stroke:rgb(0,0,0);
}
line{
stroke: black;
stroke-width:4;
}
polygon{
stroke: black;
stroke-width:4;
fill: lightgray;
}
path{
stroke: #6666ff;
stroke-width: 1px;
/* fill: none; */
/* marker-end: url(#markerArrow);*/
}
marker > path {
fill: #0000ff;
}