This repository was archived by the owner on Jun 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
45 lines (41 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible"
content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>NulledBB V4 Theme</title>
<link rel="preconnect"
href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap"
rel="stylesheet">
<style>
html,
body {
font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}
</style>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet">
</head>
<body>
<div id="app"
class="container mx-auto">
<div class="mx-4 my-4 md:my-8 md:mx-0">
<h1 class="text-3xl font-bold">NulledBB V4 Theme</h1>
<div class="my-4 flex flex-col">
<a href="./dist/app.user.js"
class="text-blue-600 hover:text-blue-800">JS Enhancements</a>
<a href="./dist/app.user.css"
class="text-blue-600 hover:text-blue-800">User CSS</a>
</div>
<div class="bg-gray-300 h-px my-4"></div>
<h1 class="text-xl font-bold mb-4">NulledBB Custom CSS Feature</h1>
<pre style="background: #f0f0f0!important; padding: 4px; display: inline-block;">@import url(https://venipa.github.io/nulledbb4-theme/dist/app.css);</pre>
<p>put this line in your custom css file</p>
</div>
</div>
</body>
</html>