justlog/web/public/index.html

44 lines
1.2 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="%PUBLIC_URL%/favicon.ico" />
<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 {
--bg: #121416;
--bg-bright: #1C1F22;
--bg-brighter: #25292D;
--bg-dark: #090A0B;
--theme: #00CC66;
--theme-bright: #00FF80;
--text: #F5F5F5;
}
body {
margin: 0;
padding: 0;
background: var(--bg-dark);
font-family: Helvetica, Arial, sans-serif;
height: 100%;
width: 100%;
overflow-y: scroll;
}
* {
box-sizing: border-box;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>