-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- **User Guide** | ||
- [Home](/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Game Master Enhanced | ||
|
||
<!-- todo --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |