45 lines
642 B
HTML
45 lines
642 B
HTML
<html>
|
|
<head>
|
|
<title>lispy pasty thingy</title>
|
|
<style>
|
|
html {
|
|
background-color: black;
|
|
color: #FFFDD0;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 5px;
|
|
}
|
|
code {
|
|
margin: 0;
|
|
font-family: monospace;
|
|
}
|
|
div {
|
|
border: 3px solid #FFFDD0;
|
|
padding: 2px;
|
|
border-radius: 5px;
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
main {
|
|
margin: auto;
|
|
width: 80%;
|
|
}
|
|
main a {
|
|
margin-left: 5%;
|
|
color: #FFFDD0;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
<h1> Lispy paste </h1>
|
|
|
|
</div>
|
|
<!-- form -->
|
|
</body>
|
|
</html>
|