Compare commits
10 Commits
3b4db251ed
...
2307473ece
| Author | SHA1 | Date |
|---|---|---|
|
|
2307473ece | |
|
|
00049bafbc | |
|
|
ea80f60c5d | |
|
|
e96aadd987 | |
|
|
eeaac99aa8 | |
|
|
8a26a9198b | |
|
|
c0ffba648e | |
|
|
e421f13d7f | |
|
|
e08f3c47a0 | |
|
|
5199a8b846 |
|
|
@ -3,20 +3,23 @@
|
|||
<head>
|
||||
<title>{{ page.title }}</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" type="image/png" href="images/favicon.png">
|
||||
<link rel="icon" type="image/png" href="assets/images/favicon.png">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<header>
|
||||
<a href="https://tilde.club/~satori">
|
||||
<img id="banner" src="images/banner.webp" style="width: 45%" title="Art by voyagehermitage">
|
||||
<a href="https://tilde.club/~satori" id="banner">
|
||||
<img src="assets/images/banner.png" title="Art by voyagehermitage" style="image-rendering: pixelated; width: 460px;">
|
||||
</a>
|
||||
</header>
|
||||
<body>
|
||||
<nav>
|
||||
<a href="devlog.html">Devlog</a>
|
||||
<a href="links.html">Links</a>
|
||||
<a href="talkbox.html">Talkbox</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="devlog.html">Devlog</a>
|
||||
<a href="https://guestbook.tilde.club/index.php?user=satori&theme=default">Guestbook</a>
|
||||
</nav>
|
||||
{{ content }}
|
||||
</body>
|
||||
|
|
|
|||
319
css/style.css
319
css/style.css
|
|
@ -1,22 +1,13 @@
|
|||
@font-face {
|
||||
font-family: 'Liberation Monospace';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: local('Liberation Monospace'), url('https://fonts.cdnfonts.com/s/276/LiberationMono-Regular.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Liberation Monospace';
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
src: local('Liberation Monospace'), url('https://fonts.cdnfonts.com/s/276/LiberationMono-Bold.woff') format('woff');
|
||||
font-family: 'FragmentMono';
|
||||
src: url('/~satori/assets/fonts/FragmentMono.ttf');
|
||||
}
|
||||
|
||||
body {
|
||||
margin: auto;
|
||||
padding: 1em;
|
||||
padding: .5em;
|
||||
max-width: 1024px;
|
||||
font-family: 'Liberation Monospace', 'Courier New', monospace, sans-serif;
|
||||
font-family: 'FragmentMono';
|
||||
color: #fb5;
|
||||
background: #111;
|
||||
word-wrap: break-word;
|
||||
|
|
@ -37,18 +28,6 @@ hr {
|
|||
border-color: #fb5;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center
|
||||
}
|
||||
|
||||
.advisory {
|
||||
background: #fc4;
|
||||
color: #222;
|
||||
font-weight: bold;
|
||||
padding: 1em;
|
||||
border-radius: 0.25em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size:1.6rem;
|
||||
text-transform: uppercase;
|
||||
|
|
@ -57,206 +36,22 @@ h1 {
|
|||
padding-top:.5rem;
|
||||
}
|
||||
|
||||
.grid {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.col {
|
||||
border: 6px double #fb5;
|
||||
padding: 1em;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
/* THEGOODS */
|
||||
#fancyboi::before {
|
||||
content: "$ ";
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
@keyframes flash {
|
||||
50% { opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes reveal {
|
||||
from { max-width: 2em; } /* Width of ::before */
|
||||
to { max-width: 100%; }
|
||||
}
|
||||
|
||||
#fancyboi {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
animation: reveal 4s linear;
|
||||
text-overflow: "█";
|
||||
}
|
||||
|
||||
#fancyboi::after {
|
||||
content: "█";
|
||||
animation: flash 0.5s step-end infinite;
|
||||
position: relative;
|
||||
top: -2px;
|
||||
margin-left: 3px;
|
||||
}
|
||||
}
|
||||
/* SDOOGEHT */
|
||||
|
||||
.sourceCode {
|
||||
color:#008000;
|
||||
}
|
||||
|
||||
code > span.fl {
|
||||
color: #008000;
|
||||
}
|
||||
|
||||
/* Style the navbar */
|
||||
#navbar {
|
||||
overflow: hidden;
|
||||
background-color: #fb5;
|
||||
color: #222;
|
||||
z-index: 99;
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
border-radius: 0.25em;
|
||||
}
|
||||
|
||||
#navbar a:hover {
|
||||
background-color: #f93;
|
||||
}
|
||||
|
||||
/* Navbar linkss */
|
||||
#navbar a {
|
||||
float: left;
|
||||
display: block;
|
||||
color: black;
|
||||
text-align: center;
|
||||
padding: 14px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* RSS Icon Styles */
|
||||
.rss-icon {
|
||||
float: right;
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
/* Page content */
|
||||
.user-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
|
||||
}
|
||||
|
||||
.user-list a {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
flex: 10em;
|
||||
}
|
||||
|
||||
.user-list a:before {
|
||||
content:"~";
|
||||
}
|
||||
|
||||
[data-op="5"] { opacity:5%; }
|
||||
[data-op="10"] { opacity:10%; }
|
||||
[data-op="15"] { opacity:15%; }
|
||||
[data-op="20"] { opacity:20%; }
|
||||
[data-op="25"] { opacity:25%; }
|
||||
[data-op="30"] { opacity:30%; }
|
||||
[data-op="35"] { opacity:35%; }
|
||||
[data-op="40"] { opacity:40%; }
|
||||
[data-op="45"] { opacity:45%; }
|
||||
[data-op="50"] { opacity:50%; }
|
||||
[data-op="55"] { opacity:55%; }
|
||||
[data-op="60"] { opacity:60%; }
|
||||
[data-op="65"] { opacity:65%; }
|
||||
[data-op="70"] { opacity:70%; }
|
||||
[data-op="75"] { opacity:75%; }
|
||||
[data-op="80"] { opacity:80%; }
|
||||
[data-op="85"] { opacity:85%; }
|
||||
[data-op="90"] { opacity:90%; }
|
||||
[data-op="95"] { opacity:95%; }
|
||||
[data-op="100"] { opacity:100%; }
|
||||
|
||||
.user-list a:hover {
|
||||
text-decoration:underline;
|
||||
color:#f70;
|
||||
}
|
||||
|
||||
.user-list b {
|
||||
background-color: #fb5;
|
||||
color:#000;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
textarea {
|
||||
background-color: #333;
|
||||
color: darkorange;
|
||||
}
|
||||
|
||||
div.alert-warning {
|
||||
background-color: darkred;
|
||||
}
|
||||
div.alert-success {
|
||||
background-color: darkgreen;
|
||||
}
|
||||
|
||||
.notice-message {
|
||||
background-color: #f93;
|
||||
color: #222;
|
||||
font-weight: bold;
|
||||
padding: 0.75em;
|
||||
border-radius: 0.25em;
|
||||
margin: 1em 0;
|
||||
text-align: center;
|
||||
border: 2px solid #fb5;
|
||||
box-shadow: 0 0 10px rgba(255, 187, 85, 0.5);
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 2px solid #fb5;
|
||||
background-color: rgba(255, 187, 85, 5%);
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
td {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/* Ensure the user-list displays items in a single column */
|
||||
.single-column {
|
||||
display: block;
|
||||
}
|
||||
.single-column li {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Style for the article content */
|
||||
.article-headers {
|
||||
background-color: #333;
|
||||
color: #fb5;
|
||||
padding: 1em;
|
||||
border: 1px solid #fb5;
|
||||
border-radius: 0.25em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.article-headers p {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #333;
|
||||
color: #fb5;
|
||||
|
|
@ -265,109 +60,3 @@ pre {
|
|||
border-radius: 0.25em;
|
||||
}
|
||||
|
||||
/* Style for error messages */
|
||||
.alert-warning {
|
||||
background-color: darkred;
|
||||
color: #fb5;
|
||||
padding: 1em;
|
||||
border-radius: 0.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* Ensure the user-list displays items in a single column */
|
||||
.single-column {
|
||||
display: block;
|
||||
}
|
||||
.single-column li {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Tree structure styles */
|
||||
.tree, .tree ul {
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.tree ul {
|
||||
margin-left: 1em; /* indentation for nested lists */
|
||||
}
|
||||
|
||||
.tree ul:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-left: 1px solid #fb5;
|
||||
}
|
||||
|
||||
.tree li {
|
||||
margin: 0;
|
||||
padding: 0.5em 0 0.5em 1em; /* space between items */
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.tree li:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 1em; /* horizontal space for the branch line */
|
||||
height: 0;
|
||||
border-top: 1px solid #fb5;
|
||||
position: absolute;
|
||||
top: 1.2em; /* adjust as needed */
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.tree li:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: -0.5em; /* adjust to align with the branch */
|
||||
border-left: 1px solid #fb5;
|
||||
}
|
||||
|
||||
.tree li:last-child:after {
|
||||
display: none; /* hide the line for the last child */
|
||||
}
|
||||
|
||||
/* Style for timestamps */
|
||||
.timestamp {
|
||||
color: #999;
|
||||
font-size: 0.9em;
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
/* Highlighted item */
|
||||
.highlighted {
|
||||
background-color: #333; /* Dark background to fit the page colorscheme */
|
||||
border: 1px solid #fb5; /* Matching border color */
|
||||
border-radius: 0.25em; /* Slight border radius for better appearance */
|
||||
padding: 0.5em; /* Padding for better readability */
|
||||
}
|
||||
|
||||
#active-users {
|
||||
margin-top: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap:10px;
|
||||
}
|
||||
|
||||
#active-users h2 {
|
||||
flex-shrink:0;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
#active-users a {
|
||||
color: #fb5;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#active-users a:hover {
|
||||
color: #f70;
|
||||
}
|
||||
|
||||
|
|
|
|||
11
devlog.md
11
devlog.md
|
|
@ -3,6 +3,17 @@ layout: default
|
|||
title: ~satori devlog
|
||||
---
|
||||
Recording every little bit of progress, no matter how insignificant is good for motivation. It is here that I will do that.
|
||||
#### Oct 27, 2025
|
||||
- Turns out the guestbook was only an issue on my end! Whoops.
|
||||
- Added guestbook but the one on tilde.club doesn't seem to be working. Will figure this out on IRC when people wake up (It's 4 AM)
|
||||
|
||||
#### Oct 26, 2025
|
||||
- Add a custom font (Fragment Mono if you're curious)
|
||||
- Change the banner from WebP to APNG for the .01% of browsers that don't support WebP (and maybe to give Google the middle finger?)
|
||||
- Make the site more mobile friendly
|
||||
|
||||
#### Oct 25, 2025
|
||||
- Made the links page
|
||||
|
||||
#### Oct 24, 2025
|
||||
- Set up a static site generator (Jekyll) and now have easy to use templates! I can update this page with markdown as well :)
|
||||
|
|
|
|||
7
index.md
7
index.md
|
|
@ -2,7 +2,10 @@
|
|||
layout: default
|
||||
title: ~satori home page
|
||||
---
|
||||
### Welcome to my tilde site! I don't have anything here yet so click those links up there!
|
||||
Last updated: 2025-10-25
|
||||
### Welcome to my Tilde site!
|
||||
I'm a 21 year old amateur sysadmin and sometimes I make websites.
|
||||
|
||||
Proudly hosted on [tilde.club](https://tilde.club)!!
|
||||
|
||||
Last updated: 2025-10-27
|
||||
If this date becomes too distant, this page will be added to the millions of other abandoned sites online :(
|
||||
|
|
|
|||
3
links.md
3
links.md
|
|
@ -22,3 +22,6 @@ title: ~satori links
|
|||
### Games
|
||||
- [Server26](https://server26.net/): Long running vanilla Minecraft server.
|
||||
- [Resonite](https://resonite.com/): Interesting looking "virtual world" type of thing with developer tools that let you create basically anything.
|
||||
|
||||
### Dev
|
||||
- [Oh shit, Git!?!](https://ohshitgit.com): Guides for escaping common bad situations you may get yourself into with git.
|
||||
|
|
|
|||
Loading…
Reference in New Issue