-
Notifications
You must be signed in to change notification settings - Fork 357
/
Copy path_howitworks.scss
71 lines (58 loc) · 997 Bytes
/
_howitworks.scss
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
#howitworks {
display: grid;
grid-template-columns: 1fr 1fr;
@media (max-width: 1024px) {
grid-template-columns: 1fr;
}
margin-block-end: 2em;
}
#diagram {
max-width: 680px;
width: 100%;
}
.hidden {
display: none;
}
.legend pre {
font-size: 14px;
white-space: pre-wrap;
}
.legendNav {
margin-block-start: 1em;
background-color: #000;
color: #fff;
border-radius: 9999px;
padding: .5rem 1.5rem;
max-width: fit-content;
outline: transparent;
border-color: transparent;
cursor: pointer;
}
.networkNode circle {
stroke-width: 1px;
stroke: #ccc;
}
#diagram text {
font-size: 14px;
}
.message circle {
fill: #fff;
stroke-width: 3px;
}
.message text {
font-weight: bold;
}
.networkLink {
stroke: #ccc;
stroke-width: 3px;
}
.graphNode circle {
fill: #fff;
stroke-width: 3px;
}
.graphLink,
.danglingGraphLink {
fill: none;
stroke: #eee;
stroke-width: 3px;
}