Skip to content

Commit 5c6d0a8

Browse files
committed
doc: enhance purple glow and fix header background
- Make purple glow larger, more intense, and lower positioned - Increase ellipse size to 200% width and 90vh height - Boost opacity for more vibrant effect (0.5/0.35/0.15) - Fix z-index layering so glow appears behind content - Add black background to header elements - Add grey border to header
1 parent c32270b commit 5c6d0a8

1 file changed

Lines changed: 19 additions & 5 deletions

File tree

theme/custom.css

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,23 @@
5858
body::before {
5959
content: '';
6060
position: fixed;
61-
bottom: -10%;
61+
bottom: -20%;
6262
left: 50%;
6363
transform: translateX(-50%);
64-
width: 150%;
65-
height: 80vh;
66-
z-index: -1;
67-
background: radial-gradient(ellipse at center, rgba(131, 103, 231, 0.4) 0%, rgba(96, 66, 199, 0.25) 30%, transparent 65%);
64+
width: 200%;
65+
height: 90vh;
66+
z-index: 0;
67+
background: radial-gradient(ellipse at center, rgba(131, 103, 231, 0.5) 0%, rgba(96, 66, 199, 0.35) 25%, rgba(131, 103, 231, 0.15) 45%, transparent 70%);
6868
pointer-events: none;
6969
}
7070

71+
.tsd-page-content,
72+
main,
73+
.container {
74+
position: relative;
75+
z-index: 1;
76+
}
77+
7178
html {
7279
background: #000000 !important;
7380
}
@@ -89,6 +96,13 @@
8996
background: transparent !important;
9097
}
9198

99+
header,
100+
.tsd-page-toolbar,
101+
.tsd-header {
102+
background: #000000 !important;
103+
border-bottom: 1px solid #3f3f46;
104+
}
105+
92106
h1,
93107
h2,
94108
h3,

0 commit comments

Comments
 (0)