-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
132 lines (113 loc) · 2.29 KB
/
Copy pathstyles.css
File metadata and controls
132 lines (113 loc) · 2.29 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* Custom styles for NeuralGraph documentation */
/* Card grid for features */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.feature-card {
background: var(--bs-body-bg);
border: 1px solid var(--bs-border-color);
border-radius: 8px;
padding: 1.5rem;
transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.feature-card h3 {
color: var(--bs-primary);
font-size: 1.25rem;
margin-bottom: 0.75rem;
}
/* Metrics highlight boxes */
.metric-box {
background: var(--bs-light);
border-left: 4px solid var(--bs-primary);
padding: 1rem 1.5rem;
margin: 1rem 0;
border-radius: 0 4px 4px 0;
}
.metric-box .value {
font-size: 2rem;
font-weight: bold;
color: var(--bs-primary);
}
.metric-box .label {
font-size: 0.9rem;
color: var(--bs-secondary);
}
/* Flow diagram styling */
.flow-diagram {
font-family: monospace;
background: var(--bs-light);
padding: 1.5rem;
border-radius: 8px;
overflow-x: auto;
line-height: 1.6;
}
/* Timeline styling */
.timeline {
position: relative;
padding-left: 2rem;
margin: 2rem 0;
}
.timeline::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 2px;
background: var(--bs-primary);
}
.timeline-item {
position: relative;
margin-bottom: 1.5rem;
padding-left: 1rem;
}
.timeline-item::before {
content: '';
position: absolute;
left: -2rem;
top: 0.5rem;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--bs-primary);
border: 2px solid var(--bs-body-bg);
}
/* Strategy table enhancement */
.strategy-table {
font-size: 0.9rem;
}
.strategy-table td:first-child {
font-weight: 600;
white-space: nowrap;
}
/* Code annotation */
.code-annotation {
background: #fff3cd;
padding: 0.2rem 0.4rem;
border-radius: 3px;
font-size: 0.85rem;
}
/* Dark mode adjustments */
[data-bs-theme="dark"] .metric-box {
background: var(--bs-dark);
}
[data-bs-theme="dark"] .flow-diagram {
background: var(--bs-dark);
}
[data-bs-theme="dark"] .code-annotation {
background: #664d03;
color: #fff3cd;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.feature-grid {
grid-template-columns: 1fr;
}
}