Make the background black
This commit is contained in:
parent
5a33777837
commit
48b2690dd9
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
<main>
|
||||
|
@ -18,4 +18,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
<main>
|
||||
|
@ -18,4 +18,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
<main class="flex flex-col">
|
||||
|
@ -19,4 +19,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
<header class="my-8 p-8 rounded-xl flex flex-col gap-4 items-center justify-center bg-gradient-to-r from-blue-400 to-emerald-400">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<a href="{{Link}}">
|
||||
<div class="bg-slate-600 rounded-lg">
|
||||
<div class="bg-neutral-600 rounded-lg">
|
||||
{{#equal Cover.Type "video"}}
|
||||
<video controls loop poster="/{{Cover.Id}}.webp" preload="none" width="100%" height="100%">
|
||||
<source src="{{Cover.Url}}" type="video/mp4" />
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
{{#if config.Privacy.not_collected}}
|
||||
<div class="flex flex-col items-center w-full lg:w-1/2 p-4 bg-slate-600 rounded-lg">
|
||||
<div class="flex flex-col items-center w-full lg:w-1/2 p-4 bg-neutral-800 rounded-lg">
|
||||
<img class="invert" src="/static/icons/PhCheckCircle.svg" alt="" height="36" width="36" />
|
||||
<h2 class="font-bold text-xl">Data not collected</h2>
|
||||
<p class="text-lg">This instance does not collect any data.</p>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{#unless config.Privacy.set}}
|
||||
<div class="flex flex-col items-center w-full lg:w-1/2 p-4 bg-slate-600 rounded-lg">
|
||||
<div class="flex flex-col items-center w-full lg:w-1/2 p-4 bg-neutral-800 rounded-lg">
|
||||
<img class="invert" src="/static/icons/PhWarning.svg" alt="" height="36" width="36" />
|
||||
<h2 class="font-bold text-xl">No details provided</h2>
|
||||
<p class="text-lg">The operator of this instance will be required to provide privacy details to be added to the instance list.</p>
|
||||
</div>
|
||||
{{else}}
|
||||
{{#unless config.Privacy.not_collected}}
|
||||
<div class="flex flex-col items-center w-full lg:w-1/2 p-4 bg-slate-600 rounded-lg">
|
||||
<div class="flex flex-col items-center w-full lg:w-1/2 p-4 bg-neutral-800 rounded-lg">
|
||||
<img class="invert" src="/static/icons/PhWarningCircle.svg" alt="" height="36" width="36" />
|
||||
<h2 class="font-bold text-xl">Data collected</h2>
|
||||
<p class="text-lg">The following data may be collected:</p>
|
||||
|
@ -45,4 +45,4 @@
|
|||
</ul>
|
||||
</div>
|
||||
{{/unless}}
|
||||
{{/unless}}
|
||||
{{/unless}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="bg-slate-600 rounded-lg">
|
||||
<div class="bg-neutral-600 rounded-lg">
|
||||
<a href="{{Url}}">
|
||||
<img src="{{ImageUrl}}?no_webp=1" loading="lazy" width="100%" height="100%">
|
||||
</a>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<form method="GET" action="/search" class="flex gap-2 w-full lg:w-1/2">
|
||||
<input class="p-2 rounded-lg bg-slate-600 w-full" name="q" type="text" placeholder="Search or paste a link" {{#if query}}value="{{query}}"{{/if}}/>
|
||||
<input class="p-2 rounded-lg bg-neutral-600 w-full" name="q" type="text" placeholder="Search or paste a link" {{#if query}}value="{{query}}"{{/if}}/>
|
||||
<button type="submit" class="p-2 rounded-lg bg-slate-600">
|
||||
<img class="invert icon" src="/static/icons/PhMagnifyingGlass.svg" alt="Search" width="24px" height="24px">
|
||||
</button>
|
||||
</form>
|
||||
</form>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
@ -72,4 +72,4 @@
|
|||
{{> 'partials/footer' }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
<section class="my-4 w-full flex flex-col items-center">
|
||||
|
@ -33,4 +33,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
@ -54,4 +54,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
@ -73,4 +73,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
@ -47,4 +47,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
@ -39,4 +39,4 @@
|
|||
{{> partials/footer }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{> partials/head }}
|
||||
</head>
|
||||
|
||||
<body class="font-sans text-lg bg-slate-800 text-white">
|
||||
<body class="font-sans text-lg bg-black text-white">
|
||||
{{> partials/nav }}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue