" target="_blank">https://fonts.googleapis.com"> https://fonts.gstatic.com" crossorigin> https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Fira+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
tailwind.config = , colors: { 'obsidian': { 'bg': '#1e1e2e', 'surface': '#2a2a3e', 'border': '#3a3a5e', 'text': '#cdd6f4', 'muted': '#9399b2', 'accent': '#89b4fa', 'success': '#a6e3a1', 'warning': '#f9e2af', 'error': '#f38ba8', } } } } }
* { box-sizing: border-box; } body code, pre, .font-mono { font-family: 'Fira Code', monospace; } /* 自定义滚动条 */ ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: #2a2a3e; } ::-webkit-scrollbar-thumb { background: #3a3a5e; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #4a4a7e; } /* 节点卡片 */ .node-card { transition: all 0.2s ease; cursor: grab; } .node-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); } .node-card:active { cursor: grabbing; } /* 画布节点 */ .canvas-node { position: absolute; min-width: 200px; cursor: move; transition: box-shadow 0.2s ease; } .canvas-node:hover { box-shadow: 0 0 0 2px #89b4fa; } .canvas-node.selected { box-shadow: 0 0 0 3px #89b4fa; } /* 连接点 */ .connector { width: 12px; height: 12px; border-radius: 50%; background: #3a3a5e; border: 2px solid #5a5a8e; cursor: crosshair; transition: all 0.2s ease; } .connector:hover { background: #89b4fa; border-color: #89b4fa; transform: scale(1.3); } /* 运行状态动画 */ @keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } } .running .pulse-ring { animation: pulse-ring 1s ease-out infinite; } /* Glassmorphism 效果 */ .glass { background: rgba(42, 42, 62, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); } /* 日志滚动 */ .log-panel { font-family: 'Fira Code', monospace; font-size: 13px; line-height: 1.6; }
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请联系我们,一经查实,本站将立刻删除。
如需转载请保留出处:https://51itzy.com/kjqy/268648.html