-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathdocumentation.html
142 lines (128 loc) · 4.1 KB
/
documentation.html
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="website/styles/style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/3.0.1/marked.min.js"></script>
<style>
body {
background-color: rgb(19, 19, 19);
color: white;
overflow-x: hidden;
max-width: 100vw;
}
img {
max-width: 90vw;
max-height: 90vh;
}
table,
th,
td {
border: 1px solid rgb(160, 160, 160);
padding: 2px;
overflow: hidden;
}
#markdown-content {
margin: 10px;
margin-top: 70px;
}
h3,
hr {
margin-top: 10px;
}
a {
color: rgb(0, 114, 228);
}
#markdown-content {
overflow-x: auto;
max-width: 100vw;
}
table {
width: 90vw;
table-layout: auto;
border-collapse: collapse;
}
#navbar_table {
width: 100%;
border: none;
}
#navbar_table td{
padding: 20px;
text-align: center;
border: none;
}
#navbar_table a{
color: white;
}
#navbar_table tr {
background-color: #31313100;
transition-duration: 0.2s;
}
#navbar_table tr:hover {
background-color: rgba(59, 59, 59, 0.527);
}
</style>
<title>Dataverse | Documentation</title>
</head>
<body>
<nav id="navbar">
<img src="website/web_images/3dlogo.svg" alt="Dataverse Logo" class="logo" id="normal">
<img src="website/web_images/3d_glow.webp" alt="Dataverse Logo" class="logo" id="glow">
<a href="website/pages/login.html">
<button class="navbarButton">
<span class="button-text">Login</span>
<img src="website/web_images/user.png" alt="User Icon" class="user-icon">
</button>
</a>
</nav>
<button class="burger" id="burger" onclick="show()"></button>
<button id="cross" class="burger" onclick="hide()"></button>
<div class="burger" id="lines">
<div class="line" id="l1"></div>
<div class="line" id="l2"></div>
<div class="line" id="l3"></div>
</div>
<div class="plane" id="plane">
<table id="navbar_table">
<tr>
<td><a href="index.html" class="table_link">Home</a></td>
</tr>
<tr>
<td id="current"><a href="documentation.html" class="table_link">Documentation</a></td>
</tr>
<tr>
<td><a href="./website/pages/versions.html" class="table_link">Versions</a></td>
</tr>
<tr>
<td><a href="./website/pages/support.html" class="table_link">Support</a></td>
</tr>
<tr>
<td><a href="./website/pages/contributor.html" class="table_link">Contributors</a></td>
</tr>
<tr>
<td><a href="./website/pages/reviews.html" class="table_link">Reviews</a></td>
</tr>
<tr>
<td><a href="./website/pages/license.html" class="table_link">License</a></td>
</tr>
<tr>
<td><a href="404.html" class="table_link">Stunning Visuals</a></td>
</tr>
<tr>
<td><a href="https://github.com/multiverseweb/Dataverse" class="table_link">Github Repository</a></td>
</tr>
</table>
</div>
<div id="markdown-content"></div>
<script>
fetch('README.md')
.then(response => response.text())
.then(markdownText => {
let html = marked(markdownText);
document.getElementById('markdown-content').innerHTML = html;
});
</script>
<script src="website/scripts/script.js" type="module" defer></script>
</body>
</html>