-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (54 loc) · 905 Bytes
/
style.css
File metadata and controls
66 lines (54 loc) · 905 Bytes
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
body {
margin: 0;
background-color: #faf8ef;
}
#map {
width: 800px;
margin: 0 auto;
}
.node {
stroke: #fff;
stroke-width: 1px;
}
.node-active {
stroke: #555;
stroke-width: 1px;
}
.overlay {
fill: none;
pointer-events: all;
}
.circle, .button {
cursor: pointer;
cursor: hand;
}
.nodetext, .attempt, .title, .replay, .desc {
fill: #000;
pointer-events: none;
font-family: 'Open Sans', sans-serif;
}
.nodetext {
font-size: 20pt;
font-weight: bold;
}
.title {
font-size: 22pt;
font-weight: bold;
}
.attempt {
font-size: 16pt;
font-weight: bold;
}
.replay {
font-size: 12pt;
font-weight: bold;
}
.desc {
font-size: 11pt;
}
.red {
fill: #C81E14;
}
.grey {
fill: lightgrey;
}