diff http/src/luan/modules/http/run.luan @ 560:2f39468680be

remove SimplyHTML from shell
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 23 Jun 2015 07:57:10 -0600
parents bfb2c30324c0
children 1e69d9c21461
line wrap: on
line diff
--- a/http/src/luan/modules/http/run.luan	Tue Jun 23 03:25:43 2015 -0600
+++ b/http/src/luan/modules/http/run.luan	Tue Jun 23 07:57:10 2015 -0600
@@ -28,37 +28,43 @@
 	<head>
 		<title>Run Luan Code</title>
 		<style>
-			input[type="submit"]:hover { background: #236aa7 !important }
+			body {
+				font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+				text-align: center;
+				margin-top: 1em;
+			}
+			h2 {
+				margin-bottom: .3em;
+				font-weight: normal;
+			}
+			textarea {
+				font: inherit;
+				border-radius: 4px;
+				padding: .5em .8em;
+			}
+			input[type="submit"] {
+				margin-top: .3em;
+				color: white;
+				background: #337ab7;
+				border-color: #337ab7;
+				font: inherit;
+				padding: .5em;
+				border-radius: 4px;
+			}
+			input[type="submit"]:hover {
+				background: #236aa7 !important;
+			}
 		</style>
 	</head>
-	<body style='
-		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-		text-align: center;
-		margin-top: 1em;
-	'>
-		<h2 style='
-			margin-bottom: .3em;
-			font-weight: normal;
-		'>Run Luan Code</h2>
+	<body>
+		<h2>Run Luan Code</h2>
 		<form name="form0" method="post">
 			<input type="hidden" name="content_type" value="text/plain" />
 			<div>
-				<textarea name="code" rows="20" cols="90" wrap="off" autofocus style='
-					font: inherit;
-					border-radius: 4px;
-					padding: .5em .8em;
-				'></textarea>
+				<textarea name="code" rows="20" cols="90" wrap="off" autofocus></textarea>
 			</div>
 			<div>
-				<input type="submit" value="Execute Luan Code" style='
-					margin-top: .3em;
-					color: white;
-					background: #337ab7;
-					border-color: #337ab7;
-					font: inherit;
-					padding: .5em;
-					border-radius: 4px;
-				'/>
+				<input type="submit" value="Execute Luan Code"/>
 			</div>
 		</form>
 	</body>