### Example CSS for Survey Body and Button Styles Source: https://apidocs.checkbox.com/index This snippet provides example CSS to customize the appearance of survey elements such as the body background, font styles, and button container. It demonstrates how to target specific selectors like `.cb-take-survey-section` and `.cb-take-survey-buttons-container` for styling. These styles can be applied via survey advanced settings or the style template editor. ```css /* Body Styles can be modified using the cb-take-survey-section selector as shown below */ .cb-take-survey-section { background: #d0b75d; /* Background Color */ font-size: 18px; /* Question / Answer Font Size */ font-family: Arial, HelveticaNeue; /* Question / Answer Font Family */ font-size: 18px; /* Question / Answer Font Size */ color: #751ca4; /* Question / Answer Font Color */ } /* Footer / Button container styles can be modified using the cb-take-survey-buttons-container selector as shown below */ .cb-take-survey-buttons-container { background-color: #8be2ed; /* Footer Color */ height: 75px; } ``` -------------------------------- ### Survey Customization - CSS Examples Source: https://apidocs.checkbox.com/index Provides examples of custom CSS to modify survey appearance, including body and button container styles. ```APIDOC ## Survey Customization - CSS ### Description This documentation assists in writing custom CSS for advanced styling of surveys, offering features beyond the standard style template editor. Custom CSS can be applied at the survey or style template level. ### Example CSS ```css /* Body Styles can be modified using the cb-take-survey-section selector as shown below */ .cb-take-survey-section { background: #d0b75d; /* Background Color */ font-size: 18px; /* Question / Answer Font Size */ font-family: Arial, HelveticaNeue; /* Question / Answer Font Family */ font-size: 18px; /* Question / Answer Font Size */ color: #751ca4; /* Question / Answer Font Color */ } /* Footer / Button container styles can be modified using the cb-take-survey-buttons-container selector as shown below */ .cb-take-survey-buttons-container { background-color: #8be2ed; /* Footer Color */ height: 75px; } ``` ### Usage Custom CSS can be added via the advanced settings in the survey or to your style template using the style template editor. Note that not all custom CSS may display in the style template preview. ``` -------------------------------- ### Checkbox On-Premise/Server/OEM API URL Source: https://apidocs.checkbox.com/index On-premise customers access the API using a specific URL provided during installation. ```APIDOC ## Checkbox On-Premise/Server/OEM API URL ### Description On-premise customers have no limits on API usage. The correct URL to use is specified during installation. ### API URL Structure `{{YOUR_API_URL}}/v1/{{ENDPOINT}}` *Note: Replace `{{YOUR_API_URL}}` with the URL specified for your API site during installation, including http or https. ``` -------------------------------- ### Checkbox API Authentication Source: https://apidocs.checkbox.com/index Authentication for the Checkbox API is primarily handled using a Bearer Token. ```APIDOC ## Authentication ### Description Authentication for the Checkbox API is handled using a Bearer Token. ### Method Implicitly used in request headers. ### Parameters #### Header Parameters - **Authorization** (string) - Required - `Bearer {{Token}}` ``` -------------------------------- ### Checkbox Online API URLs Source: https://apidocs.checkbox.com/index Different regions for Checkbox Online have distinct API URLs. Customers should use the URL corresponding to their region. ```APIDOC ## Checkbox Online API Endpoints ### Description Checkbox Online customers will use their account name where instructed. Each different region for Checkbox Online has its own API URL. The API is only available for Checkbox Online customers with a professional plan or higher. ### API URL Structure `{{API_URL}}/{{Sub_Domain}}/{{Endpoint}}` ### Region-Specific API URLs | Application URL | Region | API URL | |-------------------|---------------|-------------------------| | https://app.checkbox.com | United States | https://api.checkbox.com/v1 | | https://app.checkbox.ca | Canada | https://api.checkbox.ca/v1 | | https://app.ckbxeu.com | Europe | https://api.ckbxeu.com/v1 | | https://app.checkboxau.com | Australia | https://api.checkboxau.com/v1 | | https://app.checkboxuk.com | United Kingdom| https://api.checkboxuk.com/v1 | ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.