forked from jpb12/tree-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (62 loc) · 1.2 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.node circle {
fill: #F3F3FF;
stroke: #2593B8;
stroke-width: 1.5px;
}
.node text {
font-size: 11px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #444;
fill: #F4F4F4;
text-shadow: 0 1px 4px black;
}
.node {
cursor: pointer;
}
.node.searchIncluded text {
font-weight: bold;
font-size: 14px;
}
.node.searchExcluded text {
opacity: 0.6;
}
path.link {
fill: none;
stroke: #2593B8;
stroke-width: 1.5px;
}
body {
background-color: #242424;
overflow: hidden;
}
span {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #F4F4F4;
text-shadow: 0 1px 4px black;
float: right;
}
input {
padding: 5px 12px;
border: 0;
border-radius: 50px;
}
input:focus {
outline: none;
}
button {
background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
border: 0;
color: white;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
padding: 5px 12px;
border-radius: 50px;
}
button:hover {
background-image: linear-gradient(to top, #337ab7 0%, #265a88 100%);
cursor: pointer;
}
button:focus {
outline: none;
background-image: linear-gradient(to top, #337ab7 0%, #265a88 100%);
}