-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 2.58 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self' 'unsafe-inline'; child-src 'none';"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Plex UI</title>
<script type="module" src="./src/ssr-client.ts"></script>
<style>
:root {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
}
</style>
<link rel="icon" href="/pg-gray.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Comfortaa:wght@700&family=Fira+Code&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript
><link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Comfortaa:wght@700&family=Fira+Code&display=swap"
/></noscript>
<style>
.ex-grid {
display: grid;
margin: auto;
max-width: 600px;
grid-auto-flow: row;
grid-template-columns: auto 1fr;
grid-auto-rows: auto;
justify-content: center;
}
.ex-grid > * {
border: 0.5px solid var(--pg-neutral-mid-accent);
display: flex;
justify-content: center;
align-items: center;
margin: 0.5rem;
padding: 0.5rem;
}
.ex-grid > h3 {
display: flex;
margin-right: 0;
justify-content: center;
align-items: center;
border-right: none;
background-color: var(--pg-neutral-bg);
}
.ex-grid > div {
display: flex;
gap: 16px;
border-left: none;
flex-direction: column;
background-image: radial-gradient(
circle at 1px 1px,
var(--pg-neutral-mid-accent) 1px,
transparent 0
);
background-position: calc(50% - 1px) calc(50% - 1px);
background-size: 16px 16px;
margin-left: 0;
justify-content: center;
align-items: center;
}
body {
padding: 1rem;
}
main {
max-width: 800px;
margin: auto;
}
h2 {
padding-left: 1rem;
}
</style>
</head>
<body></body>
</html>