Skip to content

Commit

Permalink
rei fanta funny haha, made page for lithic
Browse files Browse the repository at this point in the history
  • Loading branch information
tirimid committed Nov 4, 2024
1 parent 7d80413 commit 35a9d1b
Show file tree
Hide file tree
Showing 5 changed files with 145 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmf/index.cmf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ not expect an immediate response.
similar to sudo or doas
*@[tirimid/ipa-translate.html|ipa-translate]: A Rust crate for translating ASCII
text into the International Phonetic Alphabet (IPA)
*@[tirimid/lithic.html|lithic]: A programming language and transpiler I created
for personal usage, made to be minimal and easy
*@[tirimid/medioed.html|medioed]: My first personal mediocre text editor
*@[tirimid/mincbuild.html|mincbuild]: A minimal C(++) buildsystem which doesn't
require you to learn any new technology, like a DSL
Expand All @@ -51,3 +53,5 @@ not expect an immediate response.
=Rei plushie

!()res/gamingreiplushie.webp

!()res/reiplushiefanta.webp
6 changes: 6 additions & 0 deletions cmf/tirimid/lithic.cmf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
DOC-TITLE lithic
DOC-CREATED 2024-11-03

=

stuff will be added here eventually...
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ <h1>Aggregated pages</h1>
similar to sudo or doas</li>
<li><a href="tirimid/ipa-translate.html">ipa-translate</a>: A Rust crate for translating ASCII
text into the International Phonetic Alphabet (IPA)</li>
<li><a href="tirimid/lithic.html">lithic</a>: A programming language and transpiler I created
for personal usage, made to be minimal and easy</li>
<li><a href="tirimid/medioed.html">medioed</a>: My first personal mediocre text editor</li>
<li><a href="tirimid/mincbuild.html">mincbuild</a>: A minimal C(++) buildsystem which doesn&apos;t
require you to learn any new technology, like a DSL</li>
Expand All @@ -172,5 +174,6 @@ <h1>Aggregated pages</h1>
</ul>
<h1>Rei plushie</h1>
<img src="res/gamingreiplushie.webp">
<img src="res/reiplushiefanta.webp">
</body>
</html>
Binary file added res/reiplushiefanta.webp
Binary file not shown.
132 changes: 132 additions & 0 deletions tirimid/lithic.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
<!DOCTYPE html>
<html>
<head>
<title>lithic</title>
<style>html {
background-color: #000000;
padding-top: 5ch;
padding-bottom: 5ch;
}

body {
margin-left: auto;
margin-right: auto;
width: 80ch;
color: #ffffff;
font-family: monospace;
font-weight: normal;
}

h1 {
padding-top: 1ch;
font-size: 4.5ch;
font-weight: bold;
}

h2 {
font-size: 3ch;
font-weight: bold;
}

h3 {
font-size: 2.5ch;
font-weight: bold;
}

h4, h5, h6 {
font-size: 2ch;
font-weight: bold;
}

li {
margin: 0 auto;
}

td {
margin: 0 auto;
padding: 1ch;
}

table {
margin-left: 1ch;
margin-right: 1ch;
margin-top: 3ch;
margin-bottom: 3ch;
display: block;
overflow-x: scroll;
border-collapse: collapse;
}

tr, td {
border: solid 1px #ffffff;
border-collapse: collapse;
}

p {
text-indent: 4ch;
margin: 0 auto;
}

.footnote {
padding: 1ch;
}

img {
max-height: 100%;
max-width: 100%;
}

a {
color: #00ffff;
}

a:hover {
background-color: #00ffff;
color: #000000;
}

.long-code {
width: 85ch;
margin-right: 1ch;
margin-top: 3ch;
margin-bottom: 3ch;
margin-left: -4ch;
padding: 2ch;
border: 1px solid #ffffff;
white-space: pre-wrap;
tab-size: 6;
}

blockquote {
text-indent: 0ch;
margin: 0 auto;
padding-left: 6ch;
padding-top: 1ch;
padding-bottom: 1ch;
}

.doc-title {
font-size: 7ch;
}

.doc-author, .doc-date {
color: #999999;
font-size: 2.5ch;
}

.doc-license {
color: #999999;
font-size: 2.5ch;
padding-top: 3ch;
}
</style>
</head>
<body>
<div class="doc-title">lithic</div>
<div class="doc-author">tirimid</div>
<div class="doc-date">2024-11-03</div>
<h1></h1>
<p>stuff will be added here eventually...
</p>
<div class="doc-license"><p xmlns:cc="http://creativecommons.org/ns#" >This work by <a rel="cc:attributionURL dct:creator" property="cc:attributionName" href="https://tirimid.net">tirimid</a> is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-SA 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt=""></a></p></div></body>
</html>

0 comments on commit 35a9d1b

Please sign in to comment.