Initial commit

This commit is contained in:
Ceres 2025-11-15 13:43:23 +00:00
commit fd98a9837c
Signed by: ceres-sees-all
GPG key ID: 9814758436430045
5 changed files with 135 additions and 0 deletions

Binary file not shown.

BIN
assets/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 KiB

47
assets/terminal.js Normal file

File diff suppressed because one or more lines are too long

36
index.html Normal file
View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>Ceres Sees All</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<script src="https://cdn.jsdelivr.net/npm/jquery"></script>
<script src="assets/terminal.js"></script>
</head>
<body class="">
<template id="greetings">
[[;#f5c2e7;]
▄▖ ▄▖ ▄▖▜ ▜
▌ █▌▛▘█▌▛▘▄▖▚ █▌█▌▛▘▄▖▌▌▐ ▐
▙▖▙▖▌ ▙▖▄▌ ▄▌▙▖▙▖▄▌ ▛▌▐▖▐▖
I'm watching you...]
Type 'help' to get started
</template>
<script>
$('body').terminal({
help: function() {
this.echo('Some commands to get you started:\n • about: show about info\n\n...Thats it for now, sorgy');
},
about: function() {
this.echo("Hi! I'm Ceres o/\n \nI'm a uni student studying astrophyics, and have a large interest in anything linux related\nI help moderate the linuxposting community across its many locations, including hosting our tilde and a few other services, and I'm a (occasionally active) contributer to the gentoo and guru package repositories\n\n\n\n(P.S.) [[;#f5c2e7;]I really am watching you :3]");
}
},
{
greetings: greetings.innerHTML,
prompt: "[[;#f5c2e7;]:3] > ",
});
</script>
</body>
</html>

52
style.css Normal file
View file

@ -0,0 +1,52 @@
:root {
background: #1e1e2e;
color: #cdd6f4;
font-family: mono;
}
html {
--border-width: 5px;
padding: var(--border-width);
&:before {
content: '';
position: fixed;
inset: 0;
border: solid var(--border-width) #b4befe;
}
}
.visually-hidden{
opacity: 0;
}
.cmd-clipboard{
opacity: 0;
}
.terminal-hidden{
opacity: 0;
}
.cmd-prompt {
display: inline-block;
}
.cmd-cursor-line {
display: inline-block;
}
.terminal-error {
color: #f38ba8;
}
.terminal-output {
hyphens: manual;
}
@font-face {
font-family: "mono";
src: url(assets/DepartureMono-Regular.otf);
font-weight: normal;
}