-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (90 loc) · 2.98 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html class="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>replit</title>
<link href="/./style.css" rel="stylesheet" type="text/css" />
</head>
<body class="dar">
<div class="search-container">
<input type="text" id="search-bar" placeholder="Search..." class="" />
</div>
<button class="btn btn-success">Success</button>
<button class="btn btn-error">Error</button>
<button class="btn btn-warning">Warning</button>
<button class="btn btn-primary">Primary</button>
<button class="btn">Normal</button>
<a class="link">Link</a>
<!-- <button class="btn color-accent-contrast"> Button</button>
<button class="btn color-accent-contrast btn-large"> Buttons are sooo cool!</button>
<button class="btn btn-primary color-accent-contrast btn-large btn-outline btn-primary"> Buttons are sooo cool!</button>
<button class="btn color-accent-contrast btn-large btn-outline btn-warning"> Buttons are sooo cool!</button> -->
<!-- <text>a</text> -->
<div class="card">
<div class="card-header">Card Header</div>
<div class="card-body">
<p>This is the body of the card. You can add any content here.</p>
</div>
<div class="card-footer">
<button class="btn btn-primary press glow-primary">Click me</button>
</div>
</div>
<label class="checkbox-container"
>Check me
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<button id="open-btn" class="btn">Open Modal</button>
<!-- <div class="press"> <input type="radio" ></div> -->
<div class="dropdown">
<button class="btn btn-primary" tabindex="0">Dropdown Button</button>
<div class="dropdown-content">
<a href="#">Option 1</a>
<a href="#">Option 2</a>
<a href="#">Option 3</a>
</div>
</div>
<div class="dropdown">
<button class="btn btn-primary" tabindex="0">Dropdown Button</button>
<div class="dropdown-content">
<a href="#">Option 1</a>
<a href="#">Option 2</a>
<a href="#">Option 3</a>
</div>
</div>
<input type="range" min="0" max="100" value="50" style="--value: 50" />
<span class="loader"></span>
<div
style="
width: 200px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
"
>
<div class="search-container">
<input type="text" id="search-bar" placeholder="Text input" class="" />
</div>
<div class="search-container">
<input
type="password"
id="search-bar"
placeholder="Text input"
class=""
/>
</div>
</div>
<label class="switch">
<input type="checkbox" />
<span class="slider round"></span>
</label>
<script src="index.js" type="module"></script>
<!-- <style>
:root {
--coilui-primary: pink;
}
</style> -->
</body>
</html>