-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd3-ui.css
112 lines (88 loc) · 1.82 KB
/
d3-ui.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@charset 'UTF-8';
/*
http://csswizardry.com/2014/10/the-specificity-graph/
http://cssguidelin.es/#specificity
Matherial Design:
www.google.com/design/spec/material-design/
*/
body {
/*background-color: #336698;*/
font-family: Verdana, sans-serif;
}
div {
position: relative;
float: left;
border: solid 1px orange;
margin: 1px;
/*padding: 1px;*/
/*width: 100%;*/
/*height: 1000px;*/
/*overflow: hidden;
bottom: 0;
right: 0;
left: 0;
top: 0;*/
}
*.unselectable {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
/*
Introduced in IE 10.
See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
*/
-ms-user-select: none;
user-select: none;
}
/* SVG */
g.nodes circle {
stroke-width: 0.09em;
}
g.nodes circle.marked {
fill: none;
}
/* Selections */
.selected,
.selection {
fill: none;
stroke-dasharray: 0.5em,0.3em;
stroke-dasharray: 0.6em,0.2em;
}
rect.selection {
stroke: black;
shape-rendering : crispEdges;
}
/* Highlighting (stressing) */
g.nodes circle.stressed {
fill: red;
}
g.edges path.stressed {
stroke: red;
}
/* Edge of graph */
path.edge {
}
path.catch {
fill: none;
stroke: yellow;
stroke-width: 0.8em;
stroke-opacity: 0.0;
/*cursor: pointer;*/
}
.edges text {
text-shadow: 2px 2px .5px white, -2px -2px .5px white, 2px -2px .5px white, -2px 2px .5px white;
}
/* Textarea */
#c88d9c30-5871-11e4-8ed6-0800200c9a66 {
font-size: small;
font-family: Verdana, sans-serif;
border: solid 1px gray;
/*border: 0 none white;*/
overflow: hidden;
padding: 0;
outline: none;
resize: none;
background-color: white;
background: rgba(255, 255, 255, 0.6);
/*background: transparent;*/
}