-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 2.21 KB
/
index.html
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
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeoBrutalism.css by zAlweNy26</title>
<link rel="icon" href="./nb.png">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./neobrutalism.css" />
</head>
<body class="bg-amber-500 nb-font">
<main class="p-4 space-y-4 flex flex-col gap-2">
<a class="text-lg nb-font-large self-center font-bold nb-link"
href="https://github.com/zAlweNy26/neobrutalism.css">Click here to ⭐ the GitHub repo!</a>
<div class="text-lg p-2 bg-gray-200 nb-border nb-shadow">
<p>Welcome to NeoBrutalism.css! This is a simple page.</p>
</div>
<div class="text-lg p-2 bg-gray-200 nb-border-lg nb-shadow-lg">
<p>Welcome to NeoBrutalism.css! This is a simple page.</p>
</div>
<div class="text-lg p-2 bg-gray-200 nb-border-xl nb-shadow-xl">
<p>Welcome to NeoBrutalism.css! This is a simple page.</p>
</div>
<div class="flex items-center gap-4">
<div class="text-sm transition p-1 bg-gray-200 nb-border-lg nb-shadow-lg nb-hover">
<p>Hover me</p>
</div>
<div class="text-sm p-1 bg-gray-200 nb-border-lg nb-shadow-lg">
<p>Badge</p>
</div>
<div class="text-sm font-bold p-2 bg-gray-200 rounded-full nb-border-lg nb-shadow-lg">
<p>NB</p>
</div>
<input type="checkbox" class="nb-checkbox">
</div>
<progress class="w-56 nb-border nb-shadow nb-progress" value="5" max="10"></progress>
<input type="range" min="0" max="20" value="5" class="nb-border nb-shadow nb-range">
<input class="nb-border nb-shadow nb-input" type="text" placeholder="Type something...">
<select class="nb-border nb-shadow nb-input">
<optgroup label="Mammals">
<option value="dog">Dog</option>
<option value="cat">Cat</option>
</optgroup>
</select>
<textarea class="nb-border nb-shadow nb-input" rows="5" placeholder="Type something..."></textarea>
</main>
</body>
</html>