justlog/web/index.html

55 lines
1.5 KiB
HTML
Raw Normal View History

2020-11-03 22:34:35 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
2020-11-03 22:34:35 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#090A0B" />
<title>justlog</title>
2020-11-04 21:44:55 +01:00
<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" />
2020-11-03 22:34:35 +01:00
<style>
:root {
2023-10-18 03:54:57 -03:00
2023-10-26 01:04:05 -03:00
--bg: #11111120;
2023-10-18 03:54:57 -03:00
--bg-bright: #11111120;
--bg-brighter: #3d414620;
2020-11-07 11:16:33 +01:00
--bg-dark: #121416;
2020-11-03 22:34:35 +01:00
--theme: #00CC66;
--theme-bright: #00FF80;
2020-11-14 10:29:23 +01:00
--theme2: #2980b9;
--theme2-bright: #3498db;
2020-11-03 22:34:35 +01:00
--text: #F5F5F5;
2020-11-07 10:38:21 +01:00
--text-dark: #616161;
2021-06-05 16:23:52 +02:00
--danger: #e74c3c;
2020-11-03 22:34:35 +01:00
}
2023-10-26 01:04:05 -03:00
html {
2023-10-18 03:54:57 -03:00
background-image: linear-gradient(
to bottom,
rgba(11, 11, 11, 0.8),
2023-10-26 01:04:05 -03:00
rgba(11, 11, 11, 0.9)
2023-10-18 03:54:57 -03:00
),
2023-10-26 01:04:05 -03:00
url(https://zzls.xyz/assets/bgs/bgtile3.gif);
2020-11-03 22:34:35 +01:00
margin: 0;
padding: 0;
2023-10-18 03:54:57 -03:00
/* background: var(--bg); */
2020-11-03 22:34:35 +01:00
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>
2020-11-03 22:34:35 +01:00
</body>
</html>