-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.css
More file actions
116 lines (98 loc) · 2.25 KB
/
tree.css
File metadata and controls
116 lines (98 loc) · 2.25 KB
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
113
114
115
body {
background: linear-gradient(90deg, white 21px, transparent) center, linear-gradient(white 21px, transparent) center, black;
background-size: 22px 22px;
}
.content {
margin:auto;
}
.tree ul {
margin: 15px;
}
.tree li {
list-style-type: none;
margin:10px;
position: relative;
width: 110px;
}
.tree li::before {
content: "";
position: absolute;
top:-7px;
left:-30px;
border-left: 1px solid #ccc;
border-bottom:1px solid #ccc;
border-radius:0 0 0 0px;
width:20px;
height:15px;
}
.tree li::after {
position:absolute;
content:"";
top:8px;
left:-30px;
border-left: 1px solid #ccc;
border-top:1px solid #ccc;
border-radius:0px 0 0 0;
width:20px;
height:100%;
}
.tree li:last-child::after {
display:none;
}
.tree li:last-child:before{
/*border-radius: 0 0 0 5px;*/
}
ul.tree>li:first-child::before {
display:none;
}
ul.tree>li:first-child::after {
/*border-radius:5px 0 0 0;*/
}
/*.tree li a {*/
/* border: 1px #ccc solid;*/
/* border-radius: 5px;*/
/* padding:2px 5px;*/
/*}*/
/*.tree li a:hover, .tree li a:hover+ul li a,*/
/*.tree li a:focus, .tree li a:focus+ul li a {*/
/* background: #ccc; color: #000; border: 1px solid #000;*/
/*}*/
/*.tree li a:hover+ul li::after, .tree li a:focus+ul li::after,*/
/*.tree li a:hover+ul li::before, .tree li a:focus+ul li::before*/
/*.tree li a:hover+ul::before, .tree li a:focus+ul::before*/
/*.tree li a:hover+ul ul::before, .tree li a:focus+ul ul::before{*/
/* border-color: #000; !*connector color on hover*!*/
/*}*/
.treeDiv {
text-align: center;
border-radius: 10px;
background: #fff;
width: 100%;
color: #171717;
padding: 10px 10px;
font-size: 15px;
border-left: 10px solid #627D8A;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.treeDiv2 {
text-align: center;
border-radius: 10px;
background: #fff;
width: 100%;
color: #171717;
padding: 10px 10px;
font-size: 15px;
border-left: 10px solid red;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.timeStamp {
font-size: 12px;
text-align: center;
font-weight: bold;
font-family: inherit;
color: #5C5C5C;
}
hr {
border: 0;
border-top: 1px solid #EFEFEF;
}