changeset 0:e863dbc62217

start
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 18 Apr 2023 21:52:25 -0600
parents
children 9c372fce698a
files .hgignore serve.sh src/index.html src/site.css
diffstat 4 files changed, 37 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Tue Apr 18 21:52:25 2023 -0600
@@ -0,0 +1,5 @@
+syntax: glob
+
+err
+push.sh
+mine/
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/serve.sh	Tue Apr 18 21:52:25 2023 -0600
@@ -0,0 +1,1 @@
+luan luan:http/serve.luan src 2>&1 | tee err
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/index.html	Tue Apr 18 21:52:25 2023 -0600
@@ -0,0 +1,15 @@
+<!doctype html>
+<html>
+	<head>
+		<meta name="viewport" content="width=device-width, initial-scale=1">
+		<style>
+			@import "/site.css";
+		</style>
+		<title>Reactionary Drag and Drop</title>
+	</head>
+	<body>
+		<h1>Reactionary Drag and Drop</h1>
+
+		<p>I can't find a usable drag-and-drop JavaScript library, so, as usual, I am forced to write one.  You can follow my progress, starting from zero, right here.  Here is <a href="https://hg.reactionary.software/repo/dad/">the source</a>.  Here is <a href="http://www.reactionary.software/drag.html">the need</a>.  And here is a <a href="https://communities.win/c/programming/p/16an5RSxmy/javascript-drag-and-drop/c">discussion thread</a> if you want to comment.</p>
+	</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/site.css	Tue Apr 18 21:52:25 2023 -0600
@@ -0,0 +1,16 @@
+* {
+ 	box-sizing: border-box;
+}
+
+body {
+	font-family: Sans-Serif;
+	margin-left: 3%;
+	margin-right: 3%;
+}
+
+a {
+	text-decoration: none;
+}
+a:hover {
+	text-decoration: underline;
+}