File tree Expand file tree Collapse file tree 7 files changed +89
-47
lines changed
Expand file tree Collapse file tree 7 files changed +89
-47
lines changed Original file line number Diff line number Diff line change 11/* CSS custom properties replacing Sass variables */
22: root {
3- }
4-
5- body {
63 font-family : -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted" ,
74 "Segoe UI" , "Liberation Sans" , sans-serif;
85}
96
10- /* Change header fonts */
11- .md-typeset h1 ,
12- .md-typeset h2 ,
13- .md-typeset h3 ,
14- .md-typeset h4 ,
15- .md-typeset h5 ,
16- .md-typeset h6 {
17- font-weight : 600 ;
18- color : # 111 ;
7+ .md-content__inner {
8+ margin : 0 ;
9+ padding : 0 ;
10+ padding-bottom : 3rem ;
11+
1912}
2013
21- .md-typeset h1 {
22- font-style : normal;
23- letter-spacing : -0.5px ;
24- line-height : 130% ;
14+ .md-typeset {
15+ p ,
16+ ol ,
17+ ul ,
18+ h1 ,
19+ h2 ,
20+ h3 ,
21+ h4 ,
22+ h5 ,
23+ h6 {
24+ padding : 0 20px ;
25+ color : black;
26+ }
27+
28+ /* Change header fonts */
29+ h1 , h2 , h3 , h4 , h5 , h6 {
30+ font-weight : 700 ;
31+ font-style : normal;
32+ letter-spacing : -0.5px ;
33+ line-height : 140% ;
34+ }
35+
36+ h1 {
37+ font-size : 1.2rem ;
38+ margin : 0.5em 0 1em 0 ;
39+ }
2540
26- margin : 1 em 0 0.5 0 ;
27- @media screen and ( max-width : var ( --on-palm )) {
28- margin-top : calc ( var ( --vspace ) * 1.5 ) ;
41+ h2 {
42+ font-size : 1 rem ;
43+ margin : 1.5 em 0 1.3 em 0 ;
2944 }
45+
46+ h3 {
47+ font-size : 0.9rem ;
48+ margin : 2em 0 1.1em 0 ;
49+ }
50+
51+ p , ul , ol , pre {
52+ font-size : 17px ;
53+ }
54+
55+ pre {
56+ padding-left : 20px ;
57+ padding-right : 20px ;
58+ line-height : 140% ;
59+ }
60+
3061}
3162
32- .md-typeset h2 {
33- margin : 1.5em 0 1em 0 ;
34- font-style : normal;
35- letter-spacing : -0.5px ;
36- line-height : 100% ;
37- font-size : 120% ;
63+ /* Target only the page title (first H1 in the article) */
64+ .md-content__inner .md-typeset h1 : first-of-type {
65+ padding-left : 20px ;
3866}
3967
40- .md-typeset h3 {
41- margin : 2em 0 1em 0 ;
42- font-style : normal;
43- letter-spacing : -0.5px ;
44- line-height : 100% ;
45- font-size : 110% ;
68+ .md-content__inner .md-typeset blockquote {
69+ background-color : # ffd ;
70+ border-left : 0 ;
71+ border-radius : 5px ;
72+ padding : 1px 0 ;
4673}
Original file line number Diff line number Diff line change @@ -613,7 +613,7 @@ <h2 id="loading-a-built-in-extension">🔌 Loading a Built-In Extension</h2>
613613< span class ="k "> create</ span > < span class ="w "> </ span > < span class ="n "> extension</ span > < span class ="w "> </ span > < span class ="n "> pgcrypto</ span > < span class ="p "> ;</ span >
614614</ code > </ pre > </ div >
615615< blockquote >
616- < p > ⚠️ < code > create extension</ code > is non-transactional, so don’t wrap this file in
616+ < p > ⚠️ < code > create extension</ code > is non-transactional, so don’t wrap this in
617617< code > BEGIN/COMMIT</ code > .</ p >
618618</ blockquote >
619619< h2 id ="building-an-extension-from-source "> 🛠️ Building an Extension from Source</ h2 >
Original file line number Diff line number Diff line change @@ -702,9 +702,9 @@ <h2 id="2-configure-environment-variables">2. Configure Environment Variables</h
702702 environment or application (you may bring up multiple).</ li >
703703</ ul >
704704< blockquote >
705- < p > ⚠️ Important: The .env file is for local development only. Never store real
706- secrets in version control or production. Use CI/CD environment variables or
707- a secrets manager instead.</ p >
705+ < p > ⚠️ The .env file is for local development only. Never store real secrets in
706+ version control or production. Use CI/CD environment variables or a secrets
707+ manager instead.</ p >
708708</ blockquote >
709709< h2 id ="3-start-the-stack "> 3. Start the Stack</ h2 >
710710< div class ="highlight "> < pre > < span > </ span > < code > docker< span class ="w "> </ span > compose< span class ="w "> </ span > up< span class ="w "> </ span > -d
Original file line number Diff line number Diff line change 163163</ a >
164164</ li >
165165< li class ="md-nav__item ">
166+ < a class ="md-nav__link " href ="#architecture ">
167+ < span class ="md-ellipsis ">
168+ 🏛️ Architecture
169+ </ span >
170+ </ a >
171+ </ li >
172+ < li class ="md-nav__item ">
166173< a class ="md-nav__link " href ="#whats-next ">
167174< span class ="md-ellipsis ">
168175 📚 What's next?
242249</ a >
243250</ li >
244251< li class ="md-nav__item ">
252+ < a class ="md-nav__link " href ="#architecture ">
253+ < span class ="md-ellipsis ">
254+ 🏛️ Architecture
255+ </ span >
256+ </ a >
257+ </ li >
258+ < li class ="md-nav__item ">
245259< a class ="md-nav__link " href ="#whats-next ">
246260< span class ="md-ellipsis ">
247261 📚 What's next?
259273 .logo-responsive {
260274 float : right;
261275 padding-left : 2em ;
262- }
263276
264- @media (max-width : 768px ) {
265- .logo-responsive {
277+ @media (max-width : 768px ) {
266278 float : none;
267279 display : block;
268- margin : 0 auto 2 em ;
280+ margin : 0 auto 1 em ;
269281 padding : 0 ;
270282 }
271283 }
284+
272285</ style >
273286< p > < img alt ="SuperStack Logo " class ="logo-responsive " src ="assets/logo.png "/> </ p >
274287< h1 id ="superstack "> SuperStack</ h1 >
@@ -290,6 +303,8 @@ <h2 id="what-can-i-do-with-superstack">🚀 What Can I Do with SuperStack?</h2>
290303</ ul >
291304< p > Everything runs inside Docker and routes through a single exposed port (via
292305Caddy), making it easy to develop locally or deploy remotely.</ p >
306+ < hr />
307+ < h2 id ="architecture "> 🏛️ Architecture</ h2 >
293308< pre class ="mermaid "> < code > flowchart TD
294309 Caddy["Caddy (API Gateway)"]
295310 Caddy --> Services["Services (PostgREST, Swagger UI + more)"]
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 22<urlset xmlns =" http://www.sitemaps.org/schemas/sitemap/0.9" >
33 <url >
44 <loc >https://www.explodinglabs.com/superstack/</loc >
5- <lastmod >2025-07-16 </lastmod >
5+ <lastmod >2025-07-17 </lastmod >
66 </url >
77 <url >
88 <loc >https://www.explodinglabs.com/superstack/deploying/</loc >
9- <lastmod >2025-07-16 </lastmod >
9+ <lastmod >2025-07-17 </lastmod >
1010 </url >
1111 <url >
1212 <loc >https://www.explodinglabs.com/superstack/extensions/</loc >
13- <lastmod >2025-07-16 </lastmod >
13+ <lastmod >2025-07-17 </lastmod >
1414 </url >
1515 <url >
1616 <loc >https://www.explodinglabs.com/superstack/gettingstarted/</loc >
17- <lastmod >2025-07-16 </lastmod >
17+ <lastmod >2025-07-17 </lastmod >
1818 </url >
1919 <url >
2020 <loc >https://www.explodinglabs.com/superstack/migrations/</loc >
21- <lastmod >2025-07-16 </lastmod >
21+ <lastmod >2025-07-17 </lastmod >
2222 </url >
2323 <url >
2424 <loc >https://www.explodinglabs.com/superstack/psql/</loc >
25- <lastmod >2025-07-16 </lastmod >
25+ <lastmod >2025-07-17 </lastmod >
2626 </url >
2727 <url >
2828 <loc >https://www.explodinglabs.com/superstack/upgrading/</loc >
29- <lastmod >2025-07-16 </lastmod >
29+ <lastmod >2025-07-17 </lastmod >
3030 </url >
3131</urlset >
You can’t perform that action at this time.
0 commit comments