You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.1 KiB
67 lines
1.1 KiB
@charset "UTF-8";
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
|
|
margin: 0;
|
|
text-align: left;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
td {
|
|
font-size: 14px;
|
|
color: #f3f4f6;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
color: #a5b4fc;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
a:hover {
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.tree {
|
|
padding: 20px 16px;
|
|
}
|
|
|
|
.treeNode {
|
|
padding: 10px 16px;
|
|
margin: 4px 0;
|
|
border-radius: 10px;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.treeNode:hover {
|
|
background: rgba(102, 126, 234, 0.2);
|
|
transform: translateX(4px);
|
|
}
|
|
|
|
.treeNode.selected {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: #ffffff;
|
|
font-weight: 600;
|
|
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.treeNode a {
|
|
color: #e5e7eb;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.treeNode.selected a {
|
|
color: #ffffff;
|
|
}
|