-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
135 lines (117 loc) · 2.37 KB
/
Copy pathcustom.css
File metadata and controls
135 lines (117 loc) · 2.37 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
133
134
135
/* HoloScript TypeDoc Custom Styles */
:root {
--color-background: #0d1117;
--color-background-secondary: #161b22;
--color-text: #e6edf3;
--color-text-aside: #8b949e;
--color-link: #58a6ff;
--color-accent: #7c3aed;
--color-warning: #d29922;
--color-success: #3fb950;
}
/* Header branding */
.tsd-page-title h1::before {
content: '⬡ ';
color: var(--color-accent);
}
/* Trait badges */
.tsd-signature .tsd-kind-type-alias[data-kind='trait'] {
background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
color: white;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.85em;
}
/* Category headers */
.tsd-index-group h3 {
border-bottom: 2px solid var(--color-accent);
padding-bottom: 8px;
margin-bottom: 16px;
}
/* Code blocks */
pre {
background: #161b22 !important;
border: 1px solid #30363d;
border-radius: 6px;
}
code {
font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
/* Trait lifecycle badges */
.lifecycle-badge {
display: inline-block;
padding: 2px 6px;
border-radius: 3px;
font-size: 0.75em;
font-weight: 600;
margin-right: 4px;
}
.lifecycle-attach {
background: #3fb950;
color: #0d1117;
}
.lifecycle-detach {
background: #f85149;
color: white;
}
.lifecycle-update {
background: #58a6ff;
color: #0d1117;
}
.lifecycle-event {
background: #d29922;
color: #0d1117;
}
/* Performance badges */
.perf-badge {
background: linear-gradient(135deg, #7c3aed, #4f46e5);
color: white;
padding: 2px 8px;
border-radius: 12px;
font-size: 0.75em;
font-weight: 700;
}
/* API navigation improvements */
.tsd-navigation {
font-size: 0.9em;
}
.tsd-navigation a:hover {
color: var(--color-accent);
}
/* Table improvements */
table {
width: 100%;
border-collapse: collapse;
margin: 16px 0;
}
th {
background: var(--color-background-secondary);
padding: 8px 12px;
text-align: left;
border-bottom: 2px solid var(--color-accent);
}
td {
padding: 8px 12px;
border-bottom: 1px solid #30363d;
}
tr:hover td {
background: var(--color-background-secondary);
}
/* Member visibility indicators */
.tsd-is-protected {
opacity: 0.7;
}
.tsd-is-inherited {
font-style: italic;
}
/* Search improvements */
#tsd-search-input {
background: var(--color-background-secondary);
border: 1px solid #30363d;
border-radius: 6px;
}
/* Footer */
.tsd-generator {
color: var(--color-text-aside);
font-size: 0.85em;
}