Changes to the UI, deleted the testing leftover bin
This commit is contained in:
17
root.html
17
root.html
@ -3,7 +3,7 @@
|
||||
<title>lispy pasty thingy</title>
|
||||
<style>
|
||||
html {
|
||||
background-color: black;
|
||||
background-color: #4E5A52;
|
||||
color: #FFFDD0;
|
||||
}
|
||||
body {
|
||||
@ -16,12 +16,13 @@
|
||||
}
|
||||
div {
|
||||
border: 3px solid #FFFDD0;
|
||||
padding: 2px;
|
||||
padding: 0px;
|
||||
border-radius: 5px;
|
||||
width: 80%;
|
||||
|
||||
margin: auto;
|
||||
}
|
||||
/*
|
||||
form {
|
||||
border: 3px solid #FFFDD0;
|
||||
padding: 2px;
|
||||
@ -30,19 +31,23 @@
|
||||
width: 80%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}*/
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h1> Lispy paste </h1>
|
||||
</div>
|
||||
<p> This is a simple pastebin-like web app written in Common Lisp.
|
||||
Simply type something into the box below, submit, and share the link
|
||||
with your friends.
|
||||
<br>
|
||||
Pastes are anonymous, no authentication is needed.</p>
|
||||
|
||||
<form method="post" action="/new">
|
||||
<p> New Paste: </p>
|
||||
<textarea name="content" rows="7" cols="50"></textarea> <br />
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user