justlog/web/index.html

108 lines
2.6 KiB
HTML
Raw Permalink 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-11-02 01:50:27 -03:00
rgba(11, 11, 11, 0.8 )
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%;
2023-11-02 01:50:27 -03:00
/* filter: invert(0.99); */
2020-11-03 22:34:35 +01:00
}
* {
box-sizing: border-box;
}
2023-11-02 01:50:27 -03:00
/* https://systemspace.dimden.dev/res/css/scanlines.css
/* Scanlines */
body:before {
content: "";
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1000;
background-image: url(https://zzls.xyz/assets/bgs/overlay.png);
background-repeat: all;
background-position: 0px 0px;
animation-name: Static;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: steps(4);
opacity: 0.3;
/* box-shadow: inset 0px 0px 10em rgba(0, 0, 0, 0); */
}
body:after {
content: "";
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1000;
background-image: url(https://zzls.xyz/assets/bgs/overlay2.png);
background-repeat: all;
background-position: 0px 0px;
animation-name: Static;
animation-duration: 0.8s;
animation-iteration-count: infinite;
animation-timing-function: steps(4);
opacity: 0.3;
}
@keyframes Static {
0% {
background-position: 0px 0px;
}
100% {
background-position: 0px 4px;
}
}
2020-11-03 22:34:35 +01:00
</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>