Skip to main content

Global Corporate CSS Settings

This requires more advanced approach:

The Default Corporate CSS:

/* BaseCorporate Document CSS Variables- forFocused Easyon User CustomizationColors */

:root {
  --primary-color: #445963; /* MainPreset panelColor Definitions:
   - Primary color */(#2C3E50): Used for main headings, table headers
   - Secondary color (#ECF0F1): Used for backgrounds and contrast elements
   -secondary-color: #F5F7F8;Font /*color Light(#34495E): Default text color
   - Accent color (#3498DB): Used for highlights, buttons, totals
   - Border color (#BDC3C7): Used for table borders and separator lines
   - Highlight background color */(#F5F8FA): --font-color:Used #000000;for /*emphasized Defaulttable font colorareas
*/
  --accent-color: #3E5567; /* Accent or highlight color */
  --border-color: #364950; /* Lines and borders */
}

/* Document BackgroundsBackground and Font Color */
.document {
  background-color: var(--secondary-color);#ECF0F1; /* Secondary color for clean, neutral background */
  color: var(--font-color);#34495E; font-family:/* Arial,Font sans-serif;color for readability */
}

/* Main Heading StylesColors */
h1, h2, h3 {
  color: var(--primary-color);#2C3E50; /* Primary color to emphasize headings clearly */
}

/* Table StylesHeader Colors */
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  background-color: var(--primary-color);#2C3E50; /* Primary color for contrast and clarity */
  color: var(--secondary-color);#ECF0F1; padding:/* 10px;Secondary }color tdfor {contrasting border:readable 1pxtext solid var(--border-color);
  padding: 8px;*/
}

/* Invoice-Table Border Colors */
td {
  border-color: #BDC3C7; /* Border color to subtly separate table cells */
}

/* Highlighted Table Rows or Areas */
.table-highlight {
  background-color: #F5F8FA; /* Lighter background color for emphasizing specific Stylestable areas */
}

/* Invoice Totals and Highlights */
.invoice-total {
  background-color: var(--accent-color);#3498DB; /* Accent color to draw attention to important totals */
  color: var(--secondary-color);#ECF0F1; font-weight:/* bold;Secondary padding:color 10px;to ensure readability against accent background */
}

/* LineSeparator or Border ElementsLines */
hr, .line {
  border-color: var(--border-color);#BDC3C7; /* Border color for gentle visual separation */
}

/* ButtonsButton or Interactive Elements (if needed)Colors */
.button {
  background-color: var(--accent-color);#3498DB; /* Accent color for action buttons to stand out */
  color: var(--secondary-color);#ECF0F1; border:/* none;Secondary padding:color 8pxto 12px;ensure cursor:text pointer;readability border-radius:on 4px;buttons */
}

Create Global Text in SOAP

select * from languages where iso_short = 'en';

Then:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://atollon.com/enterprise/wsdl">
   <soapenv:Header/>
   <soapenv:Body>
      <wsdl:CreateGlobalText>
         <server>SERVERNAMEHERE</server>
         <session>xxx</session>
         <identification>invoice-global-CSS</identification>
         <LANG>
            <id>131514101</id>
            <value>/* BaseCorporate Document CSS Variables- forFocused Easyon User CustomizationColors */

:root {
  --primary-color: #445963; /* MainPreset panelColor Definitions:
   - Primary color */(#2C3E50): Used for main headings, table headers
   - Secondary color (#ECF0F1): Used for backgrounds and contrast elements
   -secondary-color: #F5F7F8;Font /*color Light(#34495E): Default text color
   - Accent color (#3498DB): Used for highlights, buttons, totals
   - Border color (#BDC3C7): Used for table borders and separator lines
   - Highlight background color */(#F5F8FA): --font-color:Used #000000;for /*emphasized Defaulttable font colorareas
*/
  --accent-color: #3E5567; /* Accent or highlight color */
  --border-color: #364950; /* Lines and borders */
}

/* Document BackgroundsBackground and Font Color */
.document {
  background-color: var(--secondary-color);#ECF0F1; /* Secondary color for clean, neutral background */
  color: var(--font-color);#34495E; font-family:/* Arial,Font sans-serif;color for readability */
}

/* Main Heading StylesColors */
h1, h2, h3 {
  color: var(--primary-color);#2C3E50; /* Primary color to emphasize headings clearly */
}

/* Table StylesHeader Colors */
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  background-color: var(--primary-color);#2C3E50; /* Primary color for contrast and clarity */
  color: var(--secondary-color);#ECF0F1; padding:/* 10px;Secondary }color tdfor {contrasting border:readable 1pxtext solid var(--border-color);
  padding: 8px;*/
}

/* Invoice-Table Border Colors */
td {
  border-color: #BDC3C7; /* Border color to subtly separate table cells */
}

/* Highlighted Table Rows or Areas */
.table-highlight {
  background-color: #F5F8FA; /* Lighter background color for emphasizing specific Stylestable areas */
}

/* Invoice Totals and Highlights */
.invoice-total {
  background-color: var(--accent-color);#3498DB; /* Accent color to draw attention to important totals */
  color: var(--secondary-color);#ECF0F1; font-weight:/* bold;Secondary padding:color 10px;to ensure readability against accent background */
}

/* LineSeparator or Border ElementsLines */
hr, .line {
  border-color: var(--border-color);#BDC3C7; /* Border color for gentle visual separation */
}

/* ButtonsButton or Interactive Elements (if needed)Colors */
.button {
  background-color: var(--accent-color);#3498DB; /* Accent color for action buttons to stand out */
  color: var(--secondary-color);#ECF0F1; border:/* none;Secondary padding:color 8pxto 12px;ensure cursor:text pointer;readability border-radius:on 4px;buttons */
}             
            </value>
         </LANG>
      </wsdl:CreateGlobalText>
   </soapenv:Body>
</soapenv:Envelope>