🔥 Remove CCapture-based record feature implementation
✨ Implement record feature
♻️ Move background color implementation from stylesheet to canvas
🐛 Fix e634a47 on resize
💡 Add JSDoc
🔒 Add validators
✨ Add Record.isSupported method
26 lines
No EOL
805 B
HTML
26 lines
No EOL
805 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<title>Thornhill OS</title>
|
|
<script defer src="./assets/konva.min.js"></script>
|
|
<script type="module" defer src="./index.js"></script>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'Futura';
|
|
src: url('./assets/Futura_Std_Medium.woff2') format('woff2');
|
|
}
|
|
body, body > * {
|
|
display: block;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body id="app">
|
|
</body>
|
|
</html> |