-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (72 loc) · 2.29 KB
/
index.html
File metadata and controls
89 lines (72 loc) · 2.29 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
79
80
81
82
83
84
85
86
87
88
89
<!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="skeleton.html" class="demo-link">
<span class="fw-semibold">Skeleton</span>
<span>Sidebar skeleton</span>
</a>
<a href="sidebar.dark.html" class="demo-link">
<span class="fw-semibold">Dark</span>
<span>Default dark theme</span>
</a>
<a href="sidebar.dark.gradient.html" class="demo-link">
<span class="fw-semibold">Dark Gradient</span>
<span>Dark with gradient accent</span>
</a>
<a href="sidebar.white.html" class="demo-link">
<span class="fw-semibold">White</span>
<span>Light clean layout</span>
</a>
<a href="sidebar.white.gradient.html" class="demo-link">
<span class="fw-semibold">White Gradient</span>
<span>Light with subtle gradient</span>
</a>
<a href="sidebar.menu.custom.dark.html" class="demo-link">
<span class="fw-semibold">Dark custom</span>
<span>Dark theme</span>
</a>
<a href="sidebar.menu.custom.white.html" class="demo-link">
<span class="fw-semibold">White custom</span>
<span>White theme</span>
</a>
<a href="dashboard.skeleton.html" class="demo-link">
<span class="fw-semibold">Dashboard skeleton</span>
<span>White theme</span>
</a>
</nav>
</div>
</body>
</html>