-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (65 loc) · 2.64 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/folder_type_shared.svg" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
<link rel="stylesheet" href="./index.css" />
<script src="./components/CodeSnippet/CodeSnippet.js" defer type="module"></script>
<title>Shared</title>
</head>
<body>
<h1>Shared Files</h1>
<p>This website hosts files I use across many different projects, and contain GitHub Actions workflows, stylesheets and themes, WebComponents and more.</p>
<p>Feel free to use whatever you like, but be aware that the contents here may change at any time</p>
<p>The styling is provided by my standard theme, available below</p>
<section>
<h2>Usage</h2>
<section>
<h3>Stylesheets</h3>
<p>Just add the URL for the stylesheet in your <code><head></code> tag or <code>@import</code> it directly in your CSS file</p>
</section>
<section>
<h3>Workflows</h3>
<p>Copy the content from the code snippets and paste it in your <code>.github/workflows/[workflow_filename].yaml</code> folder</p>
</section>
</section>
<section>
<h2>Stylesheets</h2>
<ul>
<li>
<a href="./styles/gruvbox.css" target="_blank">gruvbox.css</a>
<p>
<a href="https://github.com/morhetz/gruvbox" target="_blank">Gruvbox</a> colors specified as variables with semantic names,
as described by the author
</p>
</li>
<li>
<a href="./styles/theme.css" target="_blank">theme.css</a>
<p>
Standard theme for personal projects.
<ul>
<li>Gruvbox for colors, separated as text, background, primary, secondary and accent</li>
<li>Archivo, Sora and JetBrains Mono for typefaces -- Major Third scaling (1.25)</li>
<li>5 spacing variables using Perfect Fourth scaling (1.33)</li>
</ul>
</p>
</li>
</ul>
</section>
<section>
<h2>Workflows</h2>
<ul>
<li>
<a href="./.github/workflows/vue.yml" target="_blank">Vue SPA</a>
<code-snippet src="./usage/vue.yml" lang="yaml" />
</li>
<li>
<a href="./.github/workflows/nuxt.yml" target="_blank">Nuxt SSG</a>
<code-snippet src="./usage/nuxt.yml" lang="yaml" />
</li>
</ul>
</section>
</body>
</html>