mirror of
https://codeberg.org/vlw/crtjs.git
synced 2025-09-13 18:03:40 +02:00
25 lines
No EOL
489 B
HTML
25 lines
No EOL
489 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<title>Cathode Ray</title>
|
|
<style>
|
|
:root {
|
|
/* Screen */
|
|
--resolution-width: 64;
|
|
--resolution-height: 64;
|
|
--scale: 8;
|
|
|
|
/* Phosphor */
|
|
--contrast: 128;
|
|
--decay: 2s;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="screen"></div>
|
|
<script src="js/main.js" type="module"></script>
|
|
</body>
|
|
</html> |