Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/treetrek.git

Adds themes and repository order

Author Dave Jarvis <email>
Date 2026-01-13 22:38:43 GMT-0800
Commit 234381c57a013341e17c990f726d91276877b558
Parent 80e1f75
dark.css
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
+ line-height: 1.6;
+ color: #e6edf3;
+ background: #0d1117;
+}
+
+.header {
+ background: #161b22;
+ color: white;
+ padding: 1rem 2rem;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.3);
+ border-bottom: 1px solid #30363d;
+}
+
+.header h1 {
+ font-size: 1.5rem;
+ font-weight: 600;
+}
+
+.header a {
+ color: #fff;
+ text-decoration: none;
+}
+
+.header a:hover {
+ text-decoration: underline;
+}
+
+.container {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 2rem;
+}
+
+.breadcrumb {
+ margin-bottom: 1.5rem;
+ font-size: 0.95rem;
+ color: #8b949e;
+}
+
+.breadcrumb a {
+ color: #58a6ff;
+ text-decoration: none;
+}
+
+.breadcrumb a:hover {
+ text-decoration: underline;
+}
+
+.breadcrumb span {
+ margin: 0 0.5rem;
+}
+
+.card {
+ background: #161b22;
+ border: 1px solid #30363d;
+ border-radius: 6px;
+ margin-bottom: 1rem;
+ overflow: hidden;
+}
+
+.card-header {
+ padding: 1rem 1.5rem;
+ border-bottom: 1px solid #30363d;
+ background: #0d1117;
+ font-weight: 600;
+}
+
+.card-body {
+ padding: 1.5rem;
+}
+
+.repo-list {
+ list-style: none;
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 1.5rem;
+ padding: 0;
+}
+
+@media (max-width: 1024px) {
+ .repo-list {
+ grid-template-columns: repeat(2, 1fr);
+ }
+}
+
+@media (max-width: 640px) {
+ .repo-list {
+ grid-template-columns: 1fr;
+ }
+}
+
+.repo-item {
+ padding: 1.5rem;
+ border: 1px solid #30363d;
+ border-radius: 6px;
+ background: #161b22;
+ transition: all 0.2s;
+ display: flex;
+ flex-direction: column;
+}
+
+.repo-item:last-child {
+ border-bottom: 1px solid #30363d;
+}
+
+.repo-item:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.4);
+ border-color: #58a6ff;
+}
+
+.repo-name {
+ font-size: 1.15rem;
+ font-weight: 600;
+ margin-bottom: 0.75rem;
+}
+
+.repo-name a {
+ color: #e6edf3;
+ text-decoration: none;
+}
+
+.repo-name a:hover {
+ color: #58a6ff;
+}
+
+.repo-desc {
+ color: #8b949e;
+ font-size: 0.9rem;
+ margin-bottom: 1rem;
+ flex: 1;
+ line-height: 1.5;
+}
+
+.repo-meta {
+ font-size: 0.85rem;
+ color: #8b949e;
+ display: flex;
+ gap: 0.5rem;
+ flex-wrap: wrap;
+ align-items: center;
+ margin-top: auto;
+ padding-top: 0.5rem;
+ border-top: 1px solid #21262d;
+}
+
+.repo-meta span {
+ display: flex;
+ align-items: center;
+ gap: 0.25rem;
+}
+
+.nav-tabs {
+ display: flex;
+ gap: 0.5rem;
+ border-bottom: 1px solid #30363d;
+ margin-bottom: 1.5rem;
+ padding: 0 1.5rem;
+ background: #161b22;
+ border-radius: 6px 6px 0 0;
+}
+
+.nav-tab {
+ padding: 1rem 1.25rem;
+ color: #8b949e;
+ text-decoration: none;
+ border-bottom: 2px solid transparent;
+ transition: all 0.15s;
+ font-weight: 500;
+}
+
+.nav-tab:hover {
+ color: #e6edf3;
+ border-bottom-color: #6e7681;
+}
+
+.nav-tab.active {
+ color: #e6edf3;
+ border-bottom-color: #f78166;
+}
+
+.commit-list {
+ list-style: none;
+}
+
+.commit-item {
+ padding: 1rem 1.5rem;
+ border-bottom: 1px solid #30363d;
+ display: flex;
+ gap: 1rem;
+ transition: background 0.15s;
+}
+
+.commit-item:last-child {
+ border-bottom: none;
+}
+
+.commit-item:hover {
+ background: #0d1117;
+}
+
+.commit-message {
+ flex: 1;
+}
+
+.commit-message a {
+ color: #e6edf3;
+ text-decoration: none;
+ font-weight: 500;
+}
+
+.commit-message a:hover {
+ color: #58a6ff;
+ text-decoration: underline;
+}
+
+.commit-meta {
+ font-size: 0.85rem;
+ color: #8b949e;
+ margin-top: 0.25rem;
+}
+
+.commit-hash {
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
+ font-size: 0.85rem;
+ color: #8b949e;
+ white-space: nowrap;
+}
+
+.commit-hash a {
+ color: #58a6ff;
+ text-decoration: none;
+}
+
+.file-tree {
+ list-style: none;
+}
+
+.file-item {
+ padding: 0.75rem 1.5rem;
+ border-bottom: 1px solid #30363d;
+ display: flex;
+ align-items: center;
+ gap: 0.75rem;
+ transition: background 0.15s;
+}
+
+.file-item:last-child {
+ border-bottom: none;
+}
+
+.file-item:hover {
+ background: #0d1117;
+}
+
+.file-icon {
+ width: 16px;
+ height: 16px;
+ flex-shrink: 0;
+}
+
+.file-name {
+ flex: 1;
+}
+
+.file-name a {
+ color: #58a6ff;
+ text-decoration: none;
+}
+
+.file-name a:hover {
+ text-decoration: underline;
+}
+
+.code-block {
+ background: #0d1117;
+ border: 1px solid #30363d;
+ border-radius: 6px;
+ overflow-x: auto;
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
+ font-size: 0.85rem;
+}
+
+.code-block pre {
+ padding: 1rem;
+ margin: 0;
+ overflow-x: auto;
+ color: #e6edf3;
+}
+
+.diff {
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
+ font-size: 0.85rem;
+}
+
+.diff-line {
+ padding: 0.1rem 1rem;
+ white-space: pre;
+}
+
+.diff-add {
+ background: #0b4821;
+ color: #3fb950;
+}
+
+.diff-del {
+ background: #5a1e1e;
+ color: #f85149;
+}
+
+.diff-header {
+ background: #161b22;
+ color: #8b949e;
+ font-weight: 600;
+}
+
+.commit-detail {
+ padding: 1.5rem;
+}
+
+.commit-title {
+ font-size: 1.25rem;
+ font-weight: 600;
+ margin-bottom: 1rem;
+}
+
+.commit-info {
+ background: #0d1117;
+ padding: 1rem;
+ border-radius: 6px;
+ margin-bottom: 1.5rem;
+ font-size: 0.9rem;
+ border: 1px solid #30363d;
+}
+
+.commit-info-row {
+ display: flex;
+ gap: 1rem;
+ margin-bottom: 0.5rem;
+}
+
+.commit-info-row:last-child {
+ margin-bottom: 0;
+}
+
+.commit-info-label {
+ font-weight: 600;
+ min-width: 80px;
+ color: #8b949e;
+}
+
+.empty-state {
+ text-align: center;
+ padding: 3rem;
+ color: #8b949e;
+}
+
+.empty-state-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ opacity: 0.5;
+}
+
+.file-actions {
+ display: flex;
+ gap: 0.5rem;
+ margin-bottom: 1rem;
+ padding: 0 1.5rem;
+ padding-top: 1rem;
+}
+
+.btn {
+ padding: 0.5rem 1rem;
+ background: #21262d;
+ border: 1px solid #30363d;
+ border-radius: 6px;
+ color: #e6edf3;
+ text-decoration: none;
+ font-size: 0.9rem;
+ font-weight: 500;
+ transition: all 0.15s;
+ display: inline-flex;
+ align-items: center;
+ gap: 0.5rem;
+}
+
+.btn:hover {
+ background: #30363d;
+ border-color: #6e7681;
+}
+
+.image-preview {
+ padding: 1.5rem;
+ text-align: center;
+ background: #0d1117;
+}
+
+.image-preview img {
+ max-width: 100%;
+ height: auto;
+ border: 1px solid #30363d;
+ border-radius: 6px;
+ background: #161b22;
+}
+
favicon.ico
light.css
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
+ line-height: 1.6;
+ color: #24292e;
+ background: #f6f8fa;
+}
+
+.header {
+ background: #24292e;
+ color: white;
+ padding: 1rem 2rem;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.header h1 {
+ font-size: 1.5rem;
+ font-weight: 600;
+ margin: 0;
+}
+
+.header a {
+ color: #fff;
+ text-decoration: none;
+}
+
+.header a:hover {
+ text-decoration: underline;
+}
+
+.theme-switcher {
+ display: flex;
+ align-items: center;
+}
+
+.theme-toggle {
+ padding: 0.5rem 1rem;
+ background: #f6f8fa;
+ border: 1px solid #e1e4e8;
+ border-radius: 6px;
+ color: #24292e;
+ text-decoration: none;
+ font-size: 0.9rem;
+ font-weight: 500;
+ transition: all 0.15s;
+ display: inline-flex;
+ align-items: center;
+ gap: 0.5rem;
+}
+
+.theme-toggle:hover {
+ background: #e1e4e8;
+ border-color: #d1d5da;
+ text-decoration: none;
+}
+
+.container {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 2rem;
+}
+
+.breadcrumb {
+ margin-bottom: 1.5rem;
+ font-size: 0.95rem;
+ color: #586069;
+}
+
+.breadcrumb a {
+ color: #0366d6;
+ text-decoration: none;
+}
+
+.breadcrumb a:hover {
+ text-decoration: underline;
+}
+
+.breadcrumb span {
+ margin: 0 0.5rem;
+}
+
+.card {
+ background: white;
+ border: 1px solid #e1e4e8;
+ border-radius: 6px;
+ margin-bottom: 1rem;
+ overflow: hidden;
+}
+
+.card-header {
+ padding: 1rem 1.5rem;
+ border-bottom: 1px solid #e1e4e8;
+ background: #f6f8fa;
+ font-weight: 600;
+}
+
+.card-body {
+ padding: 1.5rem;
+}
+
+.repo-list {
+ list-style: none;
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 1.5rem;
+ padding: 0;
+}
+
+@media (max-width: 1024px) {
+ .repo-list {
+ grid-template-columns: repeat(2, 1fr);
+ }
+}
+
+@media (max-width: 640px) {
+ .repo-list {
+ grid-template-columns: 1fr;
+ }
+}
+
+.repo-item {
+ padding: 1.5rem;
+ border: 1px solid #e1e4e8;
+ border-radius: 6px;
+ background: white;
+ transition: all 0.2s;
+ display: flex;
+ flex-direction: column;
+}
+
+.repo-item:last-child {
+ border-bottom: 1px solid #e1e4e8;
+}
+
+.repo-item:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+ border-color: #0366d6;
+}
+
+.repo-name {
+ font-size: 1.15rem;
+ font-weight: 600;
+ margin-bottom: 0.75rem;
+}
+
+.repo-name a {
+ color: #24292e;
+ text-decoration: none;
+}
+
+.repo-name a:hover {
+ color: #0366d6;
+}
+
+.repo-desc {
+ color: #586069;
+ font-size: 0.9rem;
+ margin-bottom: 1rem;
+ flex: 1;
+ line-height: 1.5;
+}
+
+.repo-meta {
+ font-size: 0.85rem;
+ color: #586069;
+ display: flex;
+ gap: 0.5rem;
+ flex-wrap: wrap;
+ align-items: center;
+ margin-top: auto;
+ padding-top: 0.5rem;
+ border-top: 1px solid #f6f8fa;
+}
+
+.repo-meta span {
+ display: flex;
+ align-items: center;
+ gap: 0.25rem;
+}
+
+.nav-tabs {
+ display: flex;
+ gap: 0.5rem;
+ border-bottom: 1px solid #e1e4e8;
+ margin-bottom: 1.5rem;
+ padding: 0 1.5rem;
+ background: white;
+ border-radius: 6px 6px 0 0;
+}
+
+.nav-tab {
+ padding: 1rem 1.25rem;
+ color: #586069;
+ text-decoration: none;
+ border-bottom: 2px solid transparent;
+ transition: all 0.15s;
+ font-weight: 500;
+}
+
+.nav-tab:hover {
+ color: #24292e;
+ border-bottom-color: #d1d5da;
+}
+
+.nav-tab.active {
+ color: #24292e;
+ border-bottom-color: #f9826c;
+}
+
+.commit-list {
+ list-style: none;
+}
+
+.commit-item {
+ padding: 1rem 1.5rem;
+ border-bottom: 1px solid #e1e4e8;
+ display: flex;
+ gap: 1rem;
+ transition: background 0.15s;
+}
+
+.commit-item:last-child {
+ border-bottom: none;
+}
+
+.commit-item:hover {
+ background: #f6f8fa;
+}
+
+.commit-message {
+ flex: 1;
+}
+
+.commit-message a {
+ color: #24292e;
+ text-decoration: none;
+ font-weight: 500;
+}
+
+.commit-message a:hover {
+ color: #0366d6;
+ text-decoration: underline;
+}
+
+.commit-meta {
+ font-size: 0.85rem;
+ color: #586069;
+ margin-top: 0.25rem;
+}
+
+.commit-hash {
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
+ font-size: 0.85rem;
+ color: #586069;
+ white-space: nowrap;
+}
+
+.commit-hash a {
+ color: #0366d6;
+ text-decoration: none;
+}
+
+.file-tree {
+ list-style: none;
+}
+
+.file-item {
+ padding: 0.75rem 1.5rem;
+ border-bottom: 1px solid #e1e4e8;
+ display: flex;
+ align-items: center;
+ gap: 0.75rem;
+ transition: background 0.15s;
+}
+
+.file-item:last-child {
+ border-bottom: none;
+}
+
+.file-item:hover {
+ background: #f6f8fa;
+}
+
+.file-icon {
+ width: 16px;
+ height: 16px;
+ flex-shrink: 0;
+}
+
+.file-name {
+ flex: 1;
+}
+
+.file-name a {
+ color: #0366d6;
+ text-decoration: none;
+}
+
+.file-name a:hover {
+ text-decoration: underline;
+}
+
+.code-block {
+ background: #f6f8fa;
+ border: 1px solid #e1e4e8;
+ border-radius: 6px;
+ overflow-x: auto;
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
+ font-size: 0.85rem;
+}
+
+.code-block pre {
+ padding: 1rem;
+ margin: 0;
+ overflow-x: auto;
+}
+
+.diff {
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
+ font-size: 0.85rem;
+}
+
+.diff-line {
+ padding: 0.1rem 1rem;
+ white-space: pre;
+}
+
+.diff-add {
+ background: #e6ffed;
+ color: #22863a;
+}
+
+.diff-del {
+ background: #ffeef0;
+ color: #cb2431;
+}
+
+.diff-header {
+ background: #f6f8fa;
+ color: #586069;
+ font-weight: 600;
+}
+
+.commit-detail {
+ padding: 1.5rem;
+}
+
+.commit-title {
+ font-size: 1.25rem;
+ font-weight: 600;
+ margin-bottom: 1rem;
+}
+
+.commit-info {
+ background: #f6f8fa;
+ padding: 1rem;
+ border-radius: 6px;
+ margin-bottom: 1.5rem;
+ font-size: 0.9rem;
+}
+
+.commit-info-row {
+ display: flex;
+ gap: 1rem;
+ margin-bottom: 0.5rem;
+}
+
+.commit-info-row:last-child {
+ margin-bottom: 0;
+}
+
+.commit-info-label {
+ font-weight: 600;
+ min-width: 80px;
+}
+
+.empty-state {
+ text-align: center;
+ padding: 3rem;
+ color: #586069;
+}
+
+.empty-state-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ opacity: 0.5;
+}
+
+.file-actions {
+ display: flex;
+ gap: 0.5rem;
+ margin-bottom: 1rem;
+ padding: 0 1.5rem;
+ padding-top: 1rem;
+}
+
+.btn {
+ padding: 0.5rem 1rem;
+ background: #f6f8fa;
+ border: 1px solid #e1e4e8;
+ border-radius: 6px;
+ color: #24292e;
+ text-decoration: none;
+ font-size: 0.9rem;
+ font-weight: 500;
+ transition: all 0.15s;
+ display: inline-flex;
+ align-items: center;
+ gap: 0.5rem;
+}
+
+.btn:hover {
+ background: #e1e4e8;
+ border-color: #d1d5da;
+}
+
+.image-preview {
+ padding: 1.5rem;
+ text-align: center;
+ background: #f6f8fa;
+}
+
+.image-preview img {
+ max-width: 100%;
+ height: auto;
+ border: 1px solid #e1e4e8;
+ border-radius: 6px;
+ background: white;
+}
+
order.txt
+keenwrite.git
+keenquotes.git
+kmcaster.git
+keenwrite.com.git
+autonoma.ca.git
+impacts.to.git
+delibero.git
+indispensable.git
+mandelbrot.git
+notanexus.git
+scripted-selenium.git
+yamlp.git
+jigo.git
+jexpect.git
+hierarchy.git
+rxm.git
+miller-columns.git
+palette.git
+recipe-books.git
+recipe-fiddle.git
+segmenter.git
+tally-time.git
+sales.git
+-autónoma.git
+
robots.txt
+user-agent: *
+disallow:
+crawl-delay: 60
Delta 880 lines added, 0 lines removed, 880-line increase