forked from OCamlPro/wasocaml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.html
37 lines (35 loc) · 893 Bytes
/
test.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<style>
html {
--ntp-focus-shadow-color: rgba(var(--google-blue-600-rgb), .4);
--ntp-theme-text-color: var(--google-grey-800);
background-attachment: fixed;
background-color: rgba(255,255,255,1);
background-position: -64px;
background-repeat: no-repeat;
height: 100%;
overflow: auto;
}
@media (prefers-color-scheme: dark) {
html {
--ntp-focus-shadow-color: rgba(var(--google-blue-300-rgb), .5);
--ntp-theme-text-color: white;
}
}
body {
align-items: center;
display: flex;
height: 100vh;
justify-content: center;
margin: 0;
}
</style>
</head>
<body>
<script type="module" src="./test.js"></script>
</body>
</html>