rustlog-web/index.html

68 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.gif" type="image/gif">
<!-- <link rel="icon" href="/favicon.ico" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#090A0B" />
<title>Rustlog</title>
<script defer src="https://datamining.nadeko.net/script.js" data-website-id="6cbc0f8b-a476-4a8f-b6ab-872334f62f87"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<style>
:root {
--bg: #0e0e10;
/* --bg-bright: #18181b; */
--bg-brighter: #3d4146;
--bg-dark: #121416;
--theme: #00CC66;
--theme-bright: #00FF80;
--theme2: #2980b9;
--theme2-bright: #3498db;
--text: #F5F5F5;
--text-dark: #616161;
--danger: #e74c3c;
}
html {
background: linear-gradient(to bottom,
rgba(11, 11, 11, 0.85),
rgba(11, 11, 11, 0.85)),
url(/Clouds.png), #111111;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin: 0;
padding: 0;
/* background: var(--bg); */
font-family: Helvetica, Arial, sans-serif;
height: 100%;
width: 100%;
}
body {
margin: 0;
padding: 0;
/* background: var(--bg); */
font-family: Helvetica, Arial, sans-serif;
height: 100%;
width: 100%;
}
* {
box-sizing: border-box;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>