Skip to content

Commit

Permalink
Add initial docs (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
mharis001 authored Mar 4, 2024
1 parent a1d573e commit 5411720
Show file tree
Hide file tree
Showing 6 changed files with 134 additions and 0 deletions.
Empty file added docs/.nojekyll
Empty file.
3 changes: 3 additions & 0 deletions docs/_404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# PAGE NOT FOUND

Sorry, the page you requested does not exist.
2 changes: 2 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- **User Guide**
- [Home](/)
82 changes: 82 additions & 0 deletions docs/assets/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
:root {
--theme-color: #E3A74F;

--mono-hue: 0;
--mono-saturation: 0%;
--modular-scale: 1.333;
--base-font-family: "Roboto", sans-serif;
--code-font-family: "Source Code Pro", monospace;
--content-max-width: 65em;
--sidebar-width: 20rem;
}

* {
text-decoration: none !important;
}

a {
transition: all 0.3s linear;
}

/*** Markdown General ***/

.markdown-section h1,
.markdown-section h2,
.markdown-section h3,
.markdown-section h4,
.markdown-section h5,
.markdown-section h6 {
color: var(--theme-color);
}

.markdown-section pre:after {
display: none;
}

.markdown-section a {
color: var(--theme-color);
font-weight: bold;
border-bottom: 0.125rem solid transparent;
transition: all 0.5s ease;
}

.markdown-section a:hover {
color: var(--theme-color);
border-bottom: 0.125rem solid var(--theme-color);
}

.markdown-section a.anchor {
border: none;
}

/*** Markdown Table ***/

.markdown-section table {
display: table;
}

.markdown-section table thead tr {
text-transform: uppercase;
font-size: 85%;
border-bottom: 0.15rem solid;
border-color: #999;
}

.markdown-section table tbody tr:last-of-type {
border-bottom: none;
}

.markdown-section table tr:nth-child(2n) {
background-color: transparent;
}

.markdown-section table td,
.markdown-section table th {
border: none;
padding: 1.1rem 0.5rem;
text-align: left;
}

.markdown-section table td p {
margin: 0;
}
3 changes: 3 additions & 0 deletions docs/home.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Game Master Enhanced

<!-- todo -->
44 changes: 44 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Game Master Enhanced</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto|Source+Code+Pro">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="stylesheet" href="assets/styles.css">
</head>

<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: "Game Master Enhanced",
repo: "zen-mod/GME_AR",
alias: {
"/.*/_sidebar.md": "/_sidebar.md"
},
homepage: "home.md",
auto2top: true,
loadSidebar: true,
subMaxLevel: 2,
notFoundPage: true,
themeColor: "#E3A74F",
}
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-c.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-cpp.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-clike.min.js"></script>
</body>

</html>

0 comments on commit 5411720

Please sign in to comment.