-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (68 loc) · 2.92 KB
/
index.html
File metadata and controls
78 lines (68 loc) · 2.92 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
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
<!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>Document</title>
<link rel="stylesheet" href="./source/alert.css" />
<script
src="https://kit.fontawesome.com/6f74bb313d.js"
crossorigin="anonymous"
></script>
</head>
<body id="classList-inheritance-body">
<div class="alert alert-primary alert-text">
This is a primary text in primary alert box with
<a class="alert-link-text" href="#">alert link</a>
</div>
<div class="alert alert-secondary alert-text">
This is a random text to show secondary alert box with
<a class="alert-link-text" href="#">alert link</a>
</div>
<div class="alert alert-danger alert-text">
<a href="#"><i class="fas fa-exclamation-circle"></i></a> This is a danger
text in danger alert box
</div>
<div class="alert alert-success alert-text">
<a href="#"><i class="fas fa-check-circle"></i></a> This is a positive
alert text in alert box
</div>
<div class="alert alert-immediate-action alert-text">
<a href="#"><i class="fas fa-radiation-alt"></i></a> This is a Warning
text in an alert box
</div>
<div class="alert alert-immediate-action alert-text">
<a href="#"><i class="fas fa-radiation-alt"></i></a> This is a text with
close button <button class="remove-alert-btn"></button>
</div>
<h3>Buttons</h3>
<button class="btn btn-cta btn-cta-anim dynamic-text-color">
Get Started
</button>
<button class="btn btn-outlined">Outlined</button>
<button class="btn alert-primary alert-text">Primary</button>
<button class="btn alert-secondary alert-text">Secondary</button>
<button class="btn alert-success alert-text">Success</button>
<button class="btn alert-danger alert-text">Danger</button>
<button class="btn alert-immediate-action alert-text">
immediate action
</button>
<button class="btn alert-success alert-text btn-lrg">Large</button>
<button class="btn btn-outlined btn-sml">Small</button>
<button class="btn alert-primary" disabled>Disabled</button>
<button class="btn btn-outlined">
<a href="#" class="btn-icon"><i class="fas fa-shopping-cart"></i></a>
Cart
</button>
<button class="btn btn-cta dynamic-text-color box-shadow-dense">
<a href="#" class="btn-icon"><i class="fas fa-shopping-cart"></i></a>Cart
</button>
<a class="btn-icon alert-text"><i class="fas fa-shopping-cart"></i></a>
<span class="link hover-cta-color"> <a href="#">Link text</a></span>
<button class="btn floating-btn-icon">
<a href="#" class="blip-animation"><i class="fas fa-plus"></i></a>
</button>
</body>
<script src="./source/main.js"></script>
</html>