-
Notifications
You must be signed in to change notification settings - Fork 0
/
button.html
43 lines (40 loc) · 1.43 KB
/
button.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wing Co.</title>
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<div class="wnc-container">
<nav>
<h2>Button</h2>
<p>
List of all button types and their respective classes. The
<code>.wnc-button</code> class is required for all buttons.
</p>
</nav>
<hr />
<button type="button" class="wnc-button">Default Button</button>
<button type="button" class="wnc-button wnc-button-primary">
Primary
</button>
<button type="button" class="wnc-button wnc-button-secondary">
Secondary
</button>
<button type="button" class="wnc-button wnc-button-success">
Success
</button>
<button type="button" class="wnc-button wnc-button-danger">Danger</button>
<button type="button" class="wnc-button wnc-button-warning">
Warning
</button>
<button type="button" class="wnc-button wnc-button-info">Info</button>
<button type="button" class="wnc-button wnc-button-light">Light</button>
<button type="button" class="wnc-button wnc-button-dark">Dark</button>
<button type="button" class="wnc-button wnc-button-link">Link</button>
</div>
</body>
</html>