Files
luma-editor/index.html
T
2026-06-30 22:33:26 +02:00

25 lines
529 B
HTML

<script type="module" src="main.js"></script>
<script src="parser.js"></script>
<div id="text"></div>
<style>
#text {
white-space: pre;
outline: none;
caret-color: transparent;
}
.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>