-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 3.5 KB
/
index.html
File metadata and controls
91 lines (83 loc) · 3.5 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
90
91
<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" />
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<title>SeamlessHR Design System</title>
<link href="" rel="shortcut icon" type="image/x-icon" />
<link href="bootstrap_css/bootstrap.css" rel="stylesheet" />
<link href="bootstrap_css/docs.css" rel="stylesheet" />
<link rel="stylesheet" href="shr_style.css">
</head>
<body>
<div id="header_nav">
<div class="container-xxl my-md-4 bd-layout">
<aside id="sidebar"></aside>
<main class="bd-main order-1">
<div class="bd-intro ps-lg-4">
<div class="
d-md-flex
flex-md-row-reverse
align-items-center
justify-content-between
">
<h1 class="bd-title" id="content">Introduction</h1>
</div>
<p class="bd-lead">
Resources, components, and design guidelines behind SeamlessHR
</p>
</div>
<div class="bd-toc mt-4 mb-5 my-md-0 ps-xl-3 mb-lg-5 text-muted">
<strong class="d-block h6 my-2 pb-2 border-bottom">On this page</strong>
<nav id="TableOfContents">
<ul>
<li><a href="#default_filled_buttons">Default filled buttons
</a></li>
<li>
<a href="#large_outline_buttons">Large outline buttons
</a>
</li>
<li><a href="#default_filled_buttons_with_icons">Default filled buttons with icons
</a></li>
<li><a href="#button_css">Button CSS
</a></li>
</ul>
</nav>
</div>
</main>
</div>
</div>
<script>
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
header_nav = document.getElementById("header_nav")
// document.getElementById("header_sidebar").innerHTML =
// this.responseText;
header_nav.insertAdjacentHTML('afterbegin', this.responseText);;
}
xhttp.open("GET", "component_header_plus_sidebar.html");
xhttp.send();
</script>
<script>
const xhr = new XMLHttpRequest();
xhr.onload = function() {
sidebar = document.getElementById("sidebar")
// document.getElementById("header_sidebar").innerHTML =
// this.responseText;
sidebar.insertAdjacentHTML('beforebegin', this.responseText);;
}
xhr.open("GET", "sidebar.html");
xhr.send();
</script>
<script src="/docs/5.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
<script src="/docs/5.0/assets/js/docs.min.js"></script>
<script src="bootstrap_js/bootstrap.js"></script>
</body>
</html>