Proper coloring
Dark theme Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
527e5a5fe1
commit
028ca37763
1 changed files with 11 additions and 17 deletions
|
@ -6,8 +6,8 @@
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
|
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
|
||||||
<link rel="stylesheet"
|
<link rel="stylesheet"
|
||||||
href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/default.min.css">
|
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/atom-one-dark.min.css">
|
||||||
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js"></script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
|
@ -20,35 +20,29 @@ document.addEventListener('DOMContentLoaded', (event) => {
|
||||||
hljs.highlightElement(elem);
|
hljs.highlightElement(elem);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<body>
|
<body class="bg-zinc-800">
|
||||||
<div class="flex flex-col items-center space-y-12">
|
<div class="flex flex-col items-center space-y-12">
|
||||||
<h2 class="text-3xl font-bold">
|
<h2 class="text-3xl font-bold text-gray-300">
|
||||||
Obsolute Paste - baalajimaestro
|
Obsolute Paste - baalajimaestro
|
||||||
</h2>
|
</h2>
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p
|
<p
|
||||||
class="
|
class="
|
||||||
resize-none
|
|
||||||
form-control
|
|
||||||
block
|
|
||||||
w-10/12
|
w-10/12
|
||||||
text-base
|
text-gray-100
|
||||||
font-normal
|
border border-solid border-emerald-200
|
||||||
text-gray-700
|
|
||||||
border border-solid border-gray-300
|
|
||||||
rounded
|
rounded
|
||||||
transition
|
bg-zinc-800
|
||||||
ease-in-out
|
p-2
|
||||||
m-0
|
|
||||||
"
|
"
|
||||||
id="pastecontent"
|
id="pastecontent"
|
||||||
>{{paste_content}}</p>
|
>{{paste_content}}</p>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
</div>
|
</div>
|
||||||
<div class="fixed bottom-0 left-0 w-screen h-12 md:flex md:items-center md:justify-between md:p-6">
|
<div class="fixed bottom-4 left-0 w-screen h-12 md:flex md:items-center md:justify-between md:p-6">
|
||||||
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400">©2022 Maestro Creativescape.
|
<span class="text-sm text-gray-400 sm:text-center">©2022 Maestro Creativescape.
|
||||||
</span>
|
</span>
|
||||||
<ul class="flex flex-wrap items-center mt-3 text-sm text-gray-500 dark:text-gray-400 sm:mt-0">
|
<ul class="flex flex-wrap items-center mt-3 text-sm text-gray-400 sm:mt-0">
|
||||||
<li>
|
<li>
|
||||||
<a href="https://baalajimaestro.me" class="mr-4 hover:underline md:mr-6 ">Home</a>
|
<a href="https://baalajimaestro.me" class="mr-4 hover:underline md:mr-6 ">Home</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in a new issue