Files
luma-editor/index.html
T
2026-06-30 21:31:35 +02:00

23 lines
472 B
HTML

<script type="module" src="main.js"></script>
<script src="parser.js"></script>
<div id="text"></div>
<style>
#text {
white-space: pre;
}
.cursor {
border-left: 2px solid #000;
margin-left: -1px;
margin-right: -1px;
animation: blink 1s step-end infinite;
}
.selection {
background-color: #b3d7ff;
}
@keyframes blink {
50% {
border-color: transparent;
}
}
</style>