-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
61 lines (61 loc) · 935 Bytes
/
styles.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
body {
font-family: Helvetica, Arial, Sans-serif;
font-size: 13px;
}
#flowchart {
border: 1px solid #aaa;
background-color: #ddd;
width: 800px;
height: 600px;
}
.button {
stroke: #888;
fill: #fff;
opacity: 0.5;
fill-opacity: 0.5;
}
.button:hover {
opacity: 1.0;
fill-opacity: 1.0;
box-shadow: 0 0 0 4px white;
}
.button:active {
fill: #ccf;
stroke: #88f;
}
.state {
stroke: #aaa;
fill: #fff;
border: 2px;
}
.state:hover {
stroke: #888;
}
.state-link, .state-lock.on {
stroke: none;
fill: #888;
}
.state-lock {
stroke: none;
fill: #ccc;
}
.state-link:hover, .state-lock:hover {
fill: #222;
}
.state-link:active, .state-lock:active {
fill: #88f;
}
.connection {
stroke: #888;
opacity: 0.5;
stroke-width: 2px;
}
.connection:hover {
stroke: #222;
}
.state-caption {
fill: #444;
}
.connection-caption {
fill: #444;
}