ora/src/dashboard/index.html

35 lines
856 B
HTML
Raw Permalink Normal View History

2020-09-18 21:00:59 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link href="./main.css" rel="stylesheet" />
2020-09-18 21:00:59 +02:00
<style>
2021-11-22 01:36:18 +01:00
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
2020-09-18 21:00:59 +02:00
#root {
width: 100vw;
height: 100vh;
}
2021-11-23 15:10:11 +01:00
@media (prefers-color-scheme: dark) {
body {
filter: invert(1) hue-rotate(180deg);
background-color: #111;
}
}
2020-09-18 21:00:59 +02:00
</style>
2021-11-22 01:36:18 +01:00
<title>Ora</title>
2020-09-18 21:00:59 +02:00
</head>
<body>
2021-11-22 01:36:18 +01:00
<div id="root" />
<script type="module" src="./main.js"></script>
2020-09-18 21:00:59 +02:00
</body>
</html>