Full project: Svelte 5 frontend, Vite 7 backend API, Pug email templates (email-gen), Docker deployment. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
84 lines
2.0 KiB
Plaintext
84 lines
2.0 KiB
Plaintext
include ./_factory
|
|
|
|
//Текст 100% Ширины Синий фон
|
|
+textSection560({
|
|
bgClass: 'background__blue',
|
|
titleClass: 'color__white',
|
|
textClass: 'color__white',
|
|
buttonBg: '#130F33',
|
|
buttonText: '#AAC8C8'
|
|
})
|
|
|
|
//Текст 100% Ширины Белый фон
|
|
+textSection560({
|
|
bgClass: 'background__white',
|
|
titleClass: 'color__blue',
|
|
textClass: 'color__blue',
|
|
buttonBg: '#ffffff',
|
|
buttonText: '#130F33'
|
|
})
|
|
|
|
//Текст 100% Ширины Зеленый фон
|
|
+textSection560({
|
|
bgClass: 'background__green',
|
|
titleClass: 'color__blue',
|
|
textClass: 'color__blue',
|
|
buttonBg: '#ffffff',
|
|
buttonText: '#130F33'
|
|
})
|
|
|
|
//Текст 50% Ширины Синий фон
|
|
+textSection270({
|
|
bgClass: 'background__blue',
|
|
titleClass: 'color__white',
|
|
textClass: 'color__white',
|
|
buttonBg: '#130F33',
|
|
buttonText: '#AAC8C8'
|
|
})
|
|
|
|
//Текст 50% Ширины Белый фон
|
|
+textSection270({
|
|
bgClass: 'background__white',
|
|
titleClass: 'color__blue',
|
|
textClass: 'color__blue',
|
|
buttonBg: '#ffffff',
|
|
buttonText: '#130F33'
|
|
})
|
|
|
|
//Текст 50% Ширины Зеленый фон
|
|
+textSection270({
|
|
bgClass: 'background__green',
|
|
titleClass: 'color__blue',
|
|
textClass: 'color__blue',
|
|
buttonBg: '#ffffff',
|
|
buttonText: '#130F33'
|
|
})
|
|
|
|
//Текст 33% Ширины Синий фон
|
|
+textSection173({
|
|
bgClass: 'background__blue',
|
|
titleClass: 'color__white',
|
|
textClass: 'color__white',
|
|
buttonBg: '#130F33',
|
|
buttonText: '#AAC8C8'
|
|
})
|
|
|
|
//Текст 33% Ширины Белый фон
|
|
+textSection173({
|
|
bgClass: 'background__white',
|
|
titleClass: 'color__blue',
|
|
textClass: 'color__blue',
|
|
buttonBg: '#ffffff',
|
|
buttonText: '#130F33',
|
|
firstColumnExtraGap: true
|
|
})
|
|
|
|
//Текст 33% Ширины Зеленый фон
|
|
+textSection173({
|
|
bgClass: 'background__green',
|
|
titleClass: 'color__blue',
|
|
textClass: 'color__blue',
|
|
buttonBg: '#ffffff',
|
|
buttonText: '#130F33'
|
|
})
|