feat: Initial commit

This commit is contained in:
2025-02-19 17:01:08 -05:00
commit e0fb6129ad
2362 changed files with 325107 additions and 0 deletions

BIN
deploy/static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
deploy/static/images/avatar.png LFS Normal file

Binary file not shown.

130
deploy/static/input.css Normal file
View File

@@ -0,0 +1,130 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.cdnfonts.com/css/avenir');
@font-face {
font-family: "Anonymous Pro";
src: local("Anonymous Pro Regular"), url(/static/AnonymousPro-Regular.ttf);
}
/* BODY */
body.home nav {
@apply lg:justify-center;
}
body.home header img {
@apply block lg:hidden;
}
body.home .site-footer {
@apply hidden;
}
body.home .images img {
@apply inline m-5 h-[28px];
}
/* LINKS */
nav a {
@apply block border-b-2 border-transparent;
}
nav a:hover {
@apply border-orange;
}
nav a.active {
@apply border-orange text-white;
}
.gray-links a {
@apply underline text-inherit;
}
.gray-links a:hover {
@apply text-white;
}
a.orange {
@apply text-orange;
}
a.orange:hover {
@apply underline;
}
a[href^="https://github.com"].app {
background: transparent url("images/github.svg") no-repeat;
background-size: 1em 1em;
padding-left: 20px;
}
a[href^="https://itunes.apple.com"].app, a[href^="https://apps.apple.com"].app {
background: transparent url("images/apple.svg") no-repeat;
background-size: 1em 1em;
padding-left: 20px;
}
/* PROSE */
.prose {
@apply prose-code:before:hidden prose-code:after:hidden;
}
.prose code {
@apply font-normal text-base;
}
.prose pre {
@apply shadow-lg shadow-nav;
}
.prose hr {
margin-left: 140px;
margin-right: 140px;
}
.fa-regular {
font-weight: normal;
}
/* SCREENSHOTS */
.screenshots.break_1 span {
@apply flex-1;
}
.screenshots.break_2 span {
@apply flex-[0_0_50%] lg:flex-1;
}
.screenshots.break_3 span {
@apply flex-[0_0_33%] lg:flex-1;
}
.screenshots img {
padding: 3px 3px 0 0;
border-radius: 0px;
margin: 0;
}
.screenshots.rounded img {
border-radius: 10%/4.7%;
}
@media (min-width: 860px) {
.prose pre {
margin-left: -20px;
width: 840px;
padding-left: 20px;
}
body.projects .bg-sub {
margin-left: -20px;
width: 840px;
padding-left: 20px;
}
}

1
deploy/static/output.css Normal file

File diff suppressed because one or more lines are too long

142
deploy/static/prism.css Normal file
View File

@@ -0,0 +1,142 @@
/* PrismJS 1.23.0
https://prismjs.com/download.html#themes=prism&languages=css+clike+javascript+c+objectivec+python+swift */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
font-size: 1em;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.token.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
/* This background color was intended by the author of this theme. */
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}

10
deploy/static/style.css Normal file
View File

@@ -0,0 +1,10 @@
body {
font-family: Helvetica;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}