-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·44 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Leptos Playground</title>
<link data-trunk rel="rust" data-wasm-opt="0" data-keep-debug=true />
<link rel="stylesheet" href="https://unpkg.com/open-props"/>
<!-- optional imports that use the props -->
<link rel="stylesheet" href="https://unpkg.com/open-props/normalize.min.css"/>
<link rel="stylesheet" href="https://unpkg.com/open-props/buttons.min.css"/>
<style>
h1, h2, h3, h4, h5, h6 {
margin-top: var(--size-4);
text-align: center;
}
p {
margin: var(--size-2);
}
body > picture, button, p, progress, label, input, div, table, select {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-bottom: var(--size-4);
}
img {
height: 100px;
width: auto;
margin: auto;
}
</style>
</head>
<body>
<picture>
<source srcset="https://raw.githubusercontent.com/leptos-rs/leptos/main/docs/logos/Leptos_logo_pref_dark_RGB.svg" media="(prefers-color-scheme: dark)">
<img src="https://raw.githubusercontent.com/leptos-rs/leptos/main/docs/logos/Leptos_logo_RGB.svg" alt="Leptos Logo">
</picture>
</body>
</html>