Skip to content

Commit 710272a

Browse files
committed
chore(css): remove unused styles
Remove 106 lines of unused CSS classes: - .logo-icon, .logo-icon-svg (unused logo variants) - .doc-section (unused section divider) - .feature-list, .next-steps-list (unused list styles) - .table-wrapper (unused wrapper) - .package-exports (unused display) - .type-definition (unused type display) - .example-code (unused code block style)
1 parent a0ffc7c commit 710272a

1 file changed

Lines changed: 0 additions & 106 deletions

File tree

static/style.css

Lines changed: 0 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -175,24 +175,6 @@ body:has(.doc-layout) .global-header {
175175
gap: 0.5rem;
176176
}
177177

178-
.logo-icon {
179-
background: linear-gradient(135deg, var(--accent), var(--accent-light));
180-
width: 32px;
181-
height: 32px;
182-
border-radius: 8px;
183-
display: flex;
184-
align-items: center;
185-
justify-content: center;
186-
font-size: 1rem;
187-
color: #fff;
188-
}
189-
190-
.logo-icon-svg {
191-
width: 32px;
192-
height: 32px;
193-
flex-shrink: 0;
194-
}
195-
196178
.logo-img {
197179
width: 32px;
198180
height: 32px;
@@ -736,18 +718,6 @@ a.client-tag:hover {
736718
line-height: 1.7;
737719
}
738720

739-
.doc-section {
740-
margin-top: 2.5rem;
741-
padding-top: 2rem;
742-
border-top: 1px solid var(--border);
743-
}
744-
745-
.doc-section:first-of-type {
746-
margin-top: 2rem;
747-
padding-top: 0;
748-
border-top: none;
749-
}
750-
751721
.doc-article h2 {
752722
font-size: 1.5rem;
753723
color: var(--text-heading);
@@ -899,55 +869,6 @@ a.client-tag:hover {
899869
margin-bottom: 0;
900870
}
901871

902-
/* Feature list in docs */
903-
.feature-list {
904-
list-style: none;
905-
padding: 0;
906-
}
907-
908-
.feature-list li {
909-
position: relative;
910-
padding-left: 1.5rem;
911-
margin: 0.75rem 0;
912-
}
913-
914-
.feature-list li::before {
915-
content: "✓";
916-
position: absolute;
917-
left: 0;
918-
color: var(--accent);
919-
font-weight: bold;
920-
}
921-
922-
/* Next steps list */
923-
.next-steps-list {
924-
list-style: none;
925-
padding: 0;
926-
}
927-
928-
.next-steps-list li {
929-
margin: 0.75rem 0;
930-
padding: 1rem;
931-
background: var(--bg-primary);
932-
border: 1px solid var(--border);
933-
border-radius: 8px;
934-
transition: border-color 0.2s;
935-
}
936-
937-
.next-steps-list li:hover {
938-
border-color: var(--accent);
939-
}
940-
941-
.next-steps-list a {
942-
font-weight: 600;
943-
}
944-
945-
/* Table styles */
946-
.table-wrapper {
947-
overflow-x: auto;
948-
margin: 1rem 0;
949-
}
950-
951872
.doc-article table {
952873
width: 100%;
953874
border-collapse: collapse;
@@ -1527,10 +1448,6 @@ body:has(.api-layout) .global-header {
15271448
color: var(--text-muted);
15281449
}
15291450

1530-
.package-exports {
1531-
color: var(--accent-light);
1532-
}
1533-
15341451
.package-counts {
15351452
display: flex;
15361453
flex-wrap: wrap;
@@ -2142,13 +2059,6 @@ body:has(.api-layout) .global-header {
21422059
color: var(--text-muted);
21432060
}
21442061

2145-
/* Type definition display */
2146-
.type-definition {
2147-
display: inline;
2148-
font-family: "JetBrains Mono", monospace;
2149-
font-size: 0.85rem;
2150-
}
2151-
21522062
/* API Returns */
21532063
.api-returns {
21542064
margin: 1rem 0;
@@ -2164,22 +2074,6 @@ body:has(.api-layout) .global-header {
21642074
margin: 1.5rem 0;
21652075
}
21662076

2167-
.example-code {
2168-
background: var(--bg-code);
2169-
border: 1px solid var(--border);
2170-
border-radius: 8px;
2171-
margin: 0.5rem 0;
2172-
overflow-x: auto;
2173-
}
2174-
2175-
.example-code code {
2176-
display: block;
2177-
padding: 1rem 1.25rem;
2178-
font-family: "JetBrains Mono", monospace;
2179-
font-size: 0.8rem;
2180-
line-height: 1.6;
2181-
}
2182-
21832077
/* Example from Markdown (already has pre from parseMarkdown) */
21842078
.example-markdown pre {
21852079
background: var(--bg-code);

0 commit comments

Comments
 (0)