-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRESOURCE.html
More file actions
138 lines (138 loc) · 2.87 KB
/
RESOURCE.html
File metadata and controls
138 lines (138 loc) · 2.87 KB
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
<!-- SPDX-License-Identifier: CC-BY-NC-SA-4.0 -->
<!-- SPDX-License-Identifier: AGPL-3.0-only -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FAUSTZERO.ONE | SYSTEM</title>
<meta name="description" content="FaustZero.One: Personal System of an Informatics Undergrad, Iron Lifter, and Alpine Linux Operator.">
<link rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
<link rel="license" href="https://www.gnu.org/licenses/agpl-3.0.html">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔱</text></svg>">
<style>
:root {
--b: #000;
--f: #EEE;
--d: #666;
--a: #F01;
--mono: "Courier New", monospace;
}
* {
box-sizing: border-box;
}
html {
background: var(--b);
color: var(--f);
font-family: var(--mono);
font-size: 16px;
line-height: 1.4;
-webkit-font-smoothing: none;
}
body {
max-width: 70ch;
margin: 0 auto;
padding: 1.5rem;
display: flex;
flex-direction: column;
min-height: 100vh;
}
h1, h2 {
font-weight: 700;
text-transform: uppercase;
margin: 0 0 0.5em 0;
letter-spacing: -0.05em;
font-size: 1.2rem;
line-height: 1.2;
}
p {
margin-bottom: 1em;
}
a {
color: var(--f);
text-decoration: none;
border-bottom: 1px solid var(--d);
transition: 0.1s;
}
a:hover {
background: var(--a);
color: var(--b);
border-color: var(--a);
}
hr {
border: 0;
border-bottom: 1px solid var(--d);
margin: 2rem 0;
opacity: 0.5;
}
.sys {
border-left: 2px solid var(--a);
padding-left: 1rem;
white-space: pre-wrap;
}
.st {
color: var(--a);
font-weight: 700;
}
.cm {
color: var(--d);
}
nav {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
footer {
margin-top: auto;
padding-top: 2rem;
font-size: 0.85rem;
color: var(--d);
}
.seal {
margin-top: 1rem;
opacity: 0.6;
font-size: 0.8rem;
}
@media(max-width:600px) {
body { padding: 1rem; }
nav { flex-direction: column; gap: 0.5rem; }
}
</style>
</head>
<body>
<header>
<div class="sys">
<h1>FAUSTZERO.ONE</h1>
> ./RESOURCE
<span class="cm">// Friends, External Dependencies, & Mirrors</span>
</div>
</header>
<hr>
<nav>
<a href="./index.html">./index</a>
<a href="./POST.html">./POST</a>
<a href="./PROJECT.html">./PROJECT</a>
<a href="./RESOURCE.html">./RESOURCE</a>
<a href="./CONTACT.html">./CONTACT</a>
<a href="./ABOUT.html">./ABOUT</a>
</nav>
<hr>
<main>
<p>[Under Construction]</p>
</main>
<hr>
<footer>
<p><a href="https://faustzero.one">FaustZero.One</a> | © 2022 - 2026</p>
<p>
Content licensed under <a href="./LICENSE.content">CC-BY-NC-SA 4.0</a> <br>
Site source licensed under <a href="./LICENSE">AGPL-3.0</a>
</p>
<p>
Website Source Code:
<a href="https://codeberg.org/faustzero1/pages">Codeberg</a> |
<a href="https://github.com/faustzero1/faustzero1.github.io">GitHub (Mirror)</a>
</p>
<p class="seal">Focus | We're All Gonna Make It Brah! 🔱</p>
</footer>
</body>
</html>