68 lines
1.6 KiB
Cheetah
68 lines
1.6 KiB
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Trunkless</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: "cutive";
|
|
src: url("/cutive.ttf");
|
|
}
|
|
|
|
body {
|
|
font-family: "cutive", monospace;
|
|
font-size:125%;
|
|
background-color: black;
|
|
color: white;
|
|
background-image: url("/bg_dark.gif");
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
}
|
|
|
|
div.line:not(.unpinned) > .linetext {
|
|
font-weight: bold;
|
|
}
|
|
|
|
span.linetext {
|
|
background-color: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<template id="line-editor-tmpl">
|
|
<form style="display:inline">
|
|
<input type="text" name="editedLine" style="min-width: 50em">
|
|
<input type="submit" style="display: none">
|
|
</form>
|
|
</template>
|
|
<template id="linetmpl">
|
|
<span>
|
|
<button is="line-pinner">pin</button><button is="line-editor">✎</button><button is="line-upper">↑</button><button is="line-downer">↓</button><button is="source-shower"></button><button is="line-remover">X</button>
|
|
</span>
|
|
<span class="linetext"></span>
|
|
<p is="source-text"></p>
|
|
</template>
|
|
<script src="/main.js"></script>
|
|
<h1 style="display:inline-block">Trunkless</h1>
|
|
<div style="display:inline-block; width:20% "></div>
|
|
<div id="pagecontrols" style="display:inline-block;">
|
|
<a href="/about">about</a>
|
|
<a is="theme-toggler"></a>
|
|
</div>
|
|
<p>
|
|
<button is="poem-resetter">new</button>
|
|
<button>save as text</button>
|
|
<button>save as image</button>
|
|
</p>
|
|
<div style="margin-bottom: 5px">
|
|
<button is="poem-regenner">↺</button>
|
|
</div>
|
|
<div is="poem-lines"></div>
|
|
<div>
|
|
<button is="line-adder" title="add line">+</button>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|