Update index.html

This commit is contained in:
nune 2024-12-18 20:51:39 -05:00 committed by GitHub
parent 3604512cc4
commit 0d73bf3f83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,10 +25,14 @@
body { body {
font-family: 'Nimbus Mono PS', 'Courier New', monospace; font-family: 'Nimbus Mono PS', 'Courier New', monospace;
padding: 20px; margin: 20px;
background-color: var(--bg-color); background-color: var(--bg-color);
text-align:center; text-align:center;
color: var(--text-color); color: var(--text-color);
}
.main {
text-align:center;
width:500px; width:500px;
} }
@ -44,13 +48,13 @@
} }
</style> </style>
</head> </head>
<body> <body> <div class="main">
<h1>plaster 📋</h1> <h1>plaster 📋</h1>
<p>Alternative frontend for Pastebin.</p> <p>Alternative frontend for Pastebin.</p>
<p>All issues regarding paste content should be reported to <a href="https://pastebin.com">Pastebin</a>. In addition, if you want a real alternative to Pastebin, <a href="https://privatebin.info">check out Privatebin!</a></p> <p>All issues regarding paste content should be reported to <a href="https://pastebin.com">Pastebin</a>. In addition, if you want a real alternative to Pastebin, <a href="https://privatebin.info">check out Privatebin!</a></p>
<input type="text" id="pasteUrl" placeholder="Enter Pastebin URL"> <input type="text" id="pasteUrl" placeholder="Enter Pastebin URL">
<button id="fetchBtn">go!</button> <button id="fetchBtn">go!</button>
<script src="client.js" defer></script> <script src="client.js" defer></script>
<p><a href="https://github.com/gigirassy/plaster">source code</a> is licensed under the public domain</p> <p><a href="https://github.com/gigirassy/plaster">source code</a> is licensed under the public domain</p></div>
</body> </body>
</html> </html>