-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (51 loc) · 934 Bytes
/
style.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
body {
margin:0px;
padding:0px;
overflow:hidden;
}
#rootnode{
font-size: 20px;
}
.node {
font-family: 'Quicksand', sans-serif;
font-size: .9em;
padding: 2px;
border: 2px solid #cccccc;
border-radius: 5px;
background: #eeeeee;
position: absolute;
z-index: 9;
cursor:default;
}
.UI {
font-family: 'Abel', sans-serif;
font-size: 16px;
padding: 10px;
border: 1px solid #000000;
border-radius: 0px;
background: #F2F2F2;
cursor:default;
width: 250px;
}
.note {
font-family: 'Permanent+Marker', cursive;
font-size: 12px;
padding: 5px;
border: 3px solid #777777;
border-radius: 3px;
background: #ffffff;
cursor:default;
width: 150px;
}
.code {
font-family: 'Source Code Pro', monospace;
font-size: 12px;
padding: 0px;
border: none;
border-radius: 0px;
background: none;
width: 500px;
}
svg {
position: absolute;
}