Files
nibiru-framework.com/application/view/mockup/template/less/global/_text.less
stephan 48c839d927 Initial public push: docs cosmos v4 + AI module + framework groundwork
This is the snapshot the production landing site (nibiru-framework.com) is
deployed from. Brings together the recent splash + docs migration to the v4
"Cosmos" design system, the new in-framework AI module, and the framework
groundwork that backs the framework-reference extraction.

What lands:
- docs/: Astro + Starlight site with the v4 dark cosmic palette, GalaxyHero
  canvas constellation, Mission Control chat (wired to /api/oracle →
  api.neuronetz.ai via providers.mjs Ollama), 5-panel MMVC stage
  (Model · AI · Module · Controller · View), translated EN/DE/JA/ES/FR
  content, PWA + sitemap + llms.txt + Umami analytics.
- docs/design-system/: canonical mockup bundle (source/index-v2.html for
  splash, source/docs-system.html + preview/ for docs, SPEC.md, tokens).
- docs/scripts/extraction/framework-reference-v2.md: deep framework
  reference (~1.6k lines, file:line citations, every public factory and
  idiom — basis for the LoRA training corpus.
- application/module/ai/: AI module with chat / embed / RAG / agent
  plugins, plus pdoQuery / httpGet / fileRead tools and Modelfile +
  smoke-test in training/.
- application/module/users/: user / ACL / form-factory traits used as the
  reference plugin pattern for the framework docs.
- application/settings/config/database/: schema + seed migrations
  including the AI module tables (200–203).
- Form factory + autogenerator changes the framework-reference-v2 covers.

Production secrets stay out: docs/.env, settings.production.ini and
ai.production.ini are all gitignored (.example files are in tree).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 15:22:18 +02:00

124 lines
3.5 KiB
Plaintext

/* ==========================================================================
Headings
========================================================================== */
h1, h2, h3, h4, h5, h6{
font-family: @font_primary;
font-weight: 300;
line-height: 100%;
}
h1 { font-size: 3em; margin: 0 0 .5em 0; }
h2 { font-size: 2em; margin: 0 0 .5em 0; }
h3 { font-size: 1.5em; margin: 0 0 .5em 0; }
h4 { font-size: 1.17em; margin: 0 0 .5em 0; }
h5 { font-size: 1.12em; margin: 0 0 .5em 0; }
h6 { font-size: .83em; margin: 0 0 .5em 0; }
/* ==========================================================================
Paragraph
========================================================================== */
p {
font-size: 1em;
margin: 0 0 1em 0;
font-weight: 300;
line-height: 1.8;
}
/* ==========================================================================
Block quote
========================================================================== */
blockquote{
margin: 0 0 1em 0;
padding: 0 0 0 30px;
color: @color_grey-dark;
font-style: italic;
border-left: 5px solid @color_grey-light;
}
/* ==========================================================================
Link
========================================================================== */
a{
color: @color_blue;
text-decoration: none;
font-size: inherit;
&:hover{
text-decoration: underline;
}
}
/* ==========================================================================
Mark inside text
========================================================================== */
.mark{
font-size: inherit;
color: inherit;
line-height: inherit;
&.bold{ font-weight: 400; }
&.bolder{ font-weight: 700; }
&.italic { font-style: italic; }
&.underline { text-decoration: underline; }
&.line-through { text-decoration: line-through; }
&.sup { vertical-align: super; font-size: 0.8em; }
&.sub { vertical-align: sub; font-size: 0.8em; }
&.small { font-size: 0.8em; }
&.help { border-bottom: 1px dotted @color_grey-dark; cursor: help; }
&.code { font-family: monospace; }
&.fill{
padding: .3em .6em;
border-radius: 4px;
vertical-align: baseline;
display: inline;
font-size: 80%;
line-height: 1;
color: white;
text-align: center;
white-space: nowrap;
i{
font-size: 70%;
vertical-align: middle;
padding: 0 4px;
}
&.blue{ background-color: @color_blue; }
&.blue-light{ background-color: @color_blue-light; }
&.purple{ background-color: @color_purple; }
&.green{ background-color: @color_green; }
&.orange{ background-color: @color_orange; }
&.red{ background-color: @color_red; }
&.grey{ background-color: lighten(@color_grey-light, 5%); color: @color_black; }
}
}
/* ==========================================================================
Text colors
========================================================================== */
a, p, h1, h2, h3, h4, h5, h6, span{
&.color{
&.blue{ color: @color_blue; }
&.blue-light{ color: @color_blue-light; }
&.purple{ color: @color_purple; }
&.green{ color: @color_green; }
&.orange{ color: @color_orange; }
&.red{ color: @color_red; }
&.grey{ color: @color_grey; }
}
}
/*==============================
= Labels =
==============================*/