-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (52 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
65 lines (52 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>Sidebar demos</title>
<style>
.demo-link {
display: flex;
justify-content: space-between;
align-items: center;
padding: .75rem 0;
text-decoration: none;
color: var(--bs-body-color);
transition: color .15s ease, padding-left .15s ease;
}
.demo-link {
font-size: .875rem;
color: var(--bs-secondary-color);
}
.demo-link:hover {
color: var(--bs-primary);
padding-left: .5rem;
}
</style>
</head>
<body>
<div class="container py-5 w-50">
<h1 class="mb-1 display-6">
Sidebar menu demos
</h1>
<p class="text-muted mb-4">
Preview available sidebar themes and layouts.
</p>
<nav class="d-flex flex-column gap-2">
<a href="sidebar-skeleton.html" class="demo-link">
<span class="fw-semibold">Sidebar skeleton</span>
</a>
<a href="sidebar-menu.html" class="demo-link">
<span class="fw-semibold">Sidebar menu</span>
</a>
<a href="sidebar-menu-custom.html" class="demo-link">
<span class="fw-semibold">Sidebar menu custom</span>
</a>
<a href="dashboard-skeleton.html" class="demo-link">
<span class="fw-semibold">Dashboard skeleton</span>
</a>
</nav>
</div>
</body>
</html>