forked from ExodusOSS/bytes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
45 lines (41 loc) · 832 Bytes
/
layout.css
File metadata and controls
45 lines (41 loc) · 832 Bytes
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
@layer typedoc {
html {
background: #000000 !important;
}
body {
position: relative;
overflow-x: hidden;
font-family: "Inter", system-ui, "Roboto", "Segoe UI", sans-serif;
background: #000000 !important;
}
body::before {
content: "";
position: fixed;
bottom: -20%;
left: 50%;
transform: translateX(-50%);
width: 200%;
height: 90vh;
z-index: 0;
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%
);
pointer-events: none;
}
.tsd-page-content,
main,
.container {
position: relative;
z-index: 1;
}
.container,
.container-fluid,
.tsd-page-content,
main {
background: transparent !important;
}
}