-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdtree.css
102 lines (84 loc) · 1.47 KB
/
dtree.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
/*--------------------------------------------------|
| dTree 2.05 | www.destroydrop.com/javascript/tree/ |
|---------------------------------------------------|
| Copyright (c) 2002-2003 Geir Landr |
|--------------------------------------------------*/
body {
background: #325CC8;
}
h1 {
margin-left: 50px;
color: orange;
}
h3 {
margin-left: 50px;
line-height: 20px;
color: orange;
}
.node.node-2 {
color: red;
font-weight: 400;
font-size: 18px;
}
.dtree-base {
margin-left: 50px;
margin-right: 50px;
background: white;
padding-bottom: 20px;
padding-left: 20px;
padding-top: 20px;
padding-right: 20px;
border-radius: 20px;
}
.dtree {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 16px;
color: #666;
white-space: nowrap;
}
.dtree img {
border: 0px;
vertical-align: middle;
}
.dtree a {
font-size: 16px;
color: #333;
text-decoration: none;
}
.dtree a.node,
.dtree a.nodeSel {
white-space: nowrap;
padding: 1px 2px 1px 2px;
}
.dtree a.node:hover,
.dtree a.nodeSel:hover {
color: #333;
text-decoration: underline;
}
.dtree a.nodeSel {
background-color: #c0d2ec;
}
.dtree .clip {
overflow: hidden;
}
/* 自定义属性 */
@keyframes anim {
25% {
color: yellow;
}
50% {
color: rgb(233, 12, 214);
}
75% {
color: rgb(72, 255, 0);
}
100% {
color: rgb(255, 0, 3);
}
}
.anim {
animation: anim 2s infinite;
-moz-animation: anim 2s infinite;
-webkit-animation: anim 2s infinite;
-o-animation: anim 2s infinite;
}