-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (54 loc) · 890 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
62
63
64
65
66
67
body {
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
}
header h1 {
font-size: 30px;
text-align: center;
margin-top: 30px;
margin-bottom: 30px;
line-height: 1.45em;
font-weight: 300;
color: rgba(255, 255, 255, 0.7);
}
header {
border-bottom: solid 1px rgba(0,0,0,0.4);
background-color: #183D4E;
color: white;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
position: relative;
}
.node {
stroke: grey;
stroke-width: 1px;
cursor: pointer;
}
.node.idle {
fill: #e8edfc;
}
.node.requesting {
fill: orange;
}
.node.locked {
fill: green;
}
.node.failed {
fill: red;
}
.entire-page {
margin-left: auto;
margin-right: auto;
}
line {
stroke: black;
stroke-width: 2px;
}
line.requesting {
stroke-dasharray: 5, 5; /* Dashed line */
}
line.locked {
stroke: green;
}