Skip to content

Commit

Permalink
npm audit fix, styling
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Nov 28, 2024
1 parent c7b6508 commit aeffdca
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
1 change: 1 addition & 0 deletions src/discord.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0; URL='https://discord.com/invite/CxYFAfsV5X'" />
<link rel="stylesheet" href="styles.css" />
<title>Redirecting...</title>
</head>
<body>
Expand Down
27 changes: 12 additions & 15 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
<title>ZenFS Docs</title>
<link rel="stylesheet" href="styles.css" />
<style>
body {
background-color: #333;
}
#main {
margin-top: 1em;
margin-left: 1em;
Expand All @@ -20,28 +17,28 @@ <h2>Welcome to the ZenFS Docs!</h2>

<p>You can find the docs for specific <code>@zenfs</code> modules below:</p>
<p>
<strong><a href="/core">core</a></strong
>: The core, includes some backends
<strong><a href="/core">core</a></strong>
<span>: The core, includes some backends</span>
</p>
<p>
<strong><a href="/dom">dom</a></strong
>: Backends which use DOM APIs (i.e. browsers)
<strong><a href="/dom">dom</a></strong>
<span>: Backends which use DOM APIs (i.e. browsers)</span>
</p>
<p>
<strong><a href="/zip">zip</a></strong
>: Backend for ZIP archives
<strong><a href="/zip">zip</a></strong>
<span>: Backend for ZIP archives</span>
</p>
<p>
<strong><a href="/iso">iso</a></strong
>: Backend for ISO disk images
<strong><a href="/iso">iso</a></strong>
<span>: Backend for ISO disk images</span>
</p>
<p>
<strong><a href="/cloud">cloud</a></strong
>: Backends for cloud providers, like Dropbox and AWS S3.
<strong><a href="/cloud">cloud</a></strong>
<span>: Backends for cloud providers, like Dropbox and AWS S3.</span>
</p>
<p>
<strong><a href="/emscripten">emscripten</a></strong
>: Backend for use with Emscripten (Work in Progress)
<strong><a href="/emscripten">emscripten</a></strong>
<span>: Backend for use with Emscripten (Work in Progress)</span>
</p>

<h3><a href="/playground">Playground</a></h3>
Expand Down
4 changes: 4 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
background-color: #333;
color: #aac;
}

body {
background-color: #333;
}

0 comments on commit aeffdca

Please sign in to comment.