-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 2.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en" data-theme="Dark">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="/dist/output.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.js"></script>
<title>Tally Counter</title>
</head>
<body>
<div class="hero min-h-screen bg-base-200">
<div class="hero-content text-center">
<div class="max-w-md">
<h1 class="font-bold value">0</h1>
<br>
<button class="btn btn-lg btn-primary decrease">-</button>
<button class="btn btn-lg btn-primary reset">Reset</button>
<button class="btn btn-lg btn-primary increase">+</button>
<div class="grid h-5 place-items-center"></div>
<div>
<span class="text-xs">theme</span>
<select class="select select-bordered select-xs w-full max-w-xs" data-choose-theme onchange="themeChange()">
<option value="">default</option>
<option value="light">light</option>
<option value="delivery">delivery</option>
<option value="cupcake">cupcake</option>
<option value="bumblebee">bumblebee</option>
<option value="emerald">emerald</option>
<option value="corporate">corporate</option>
<option value="synthwave">synthwave</option>
<option value="retro">retro</option>
<option value="cyberpunk">cyberpunk</option>
<option value="valentine">valentine</option>
<option value="halloween">halloween</option>
<option value="garden">garden</option>
<option value="forest">forest</option>
<option value="aqua">aqua</option>
<option value="lofi">lofi</option>
<option value="pastel">pastel</option>
<option value="fantasy">fantasy</option>
<option value="wireframe">wireframe</option>
<option value="black">black</option>
<option value="luxury">luxury</option>
<option value="dracula">dracula</option>
<option value="cmyk">cmyk</option>
<option value="autumn">autumn</option>
<option value="business">business</option>
<option value="acid">acid</option>
<option value="lemonade">lemonade</option>
<option value="night">night</option>
<option value="coffee">coffee</option>
<option value="winter">winter</option>
</select>
</div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>