Initial commit: TFGrid Economics documentation site
Some checks failed
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled

- Based on working minting_plan repository
- Configured for threefold.info/economics deployment
- Added ops documentation for server deployment
- Updated baseUrl and URL configuration
This commit is contained in:
mik-tf
2025-10-10 21:38:17 -04:00
commit 65fbdb836b
32 changed files with 24403 additions and 0 deletions

107
src/css/custom.css Normal file
View File

@@ -0,0 +1,107 @@
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
/* For readability improvements */
[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
/* Custom styles for feedback callouts */
.feedback-box {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 2rem;
border-radius: 10px;
margin: 2rem 0;
color: white;
}
.feedback-box h2 {
color: white;
margin-top: 0;
}
.feedback-links {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
flex-wrap: wrap;
}
.feedback-link {
display: inline-block;
padding: 0.75rem 1.5rem;
background: rgba(255, 255, 255, 0.2);
border-radius: 5px;
color: white;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}
.feedback-link:hover {
background: rgba(255, 255, 255, 0.3);
color: white;
text-decoration: none;
transform: translateY(-2px);
}
/* Open questions styling */
.open-questions {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 1.5rem;
margin: 2rem 0;
border-radius: 5px;
}
[data-theme='dark'] .open-questions {
background: #3d3416;
border-left-color: #ffca28;
}
.open-questions h3 {
margin-top: 0;
color: #856404;
}
[data-theme='dark'] .open-questions h3 {
color: #ffd54f;
}
.open-questions ul {
margin-bottom: 0;
}
/* Table improvements */
table {
display: table;
width: 100%;
}
/* Code block improvements */
pre {
border-radius: 8px;
}