Getting the CSS of a Document

Usage

Returns the CSS attached to a Web Intelligence document.

Request

GET /documents/<documentID>/css

Response

Response type: text/css

Example

GET /documents/5022/css

Response:

FORM CELL.ia-form-header {    /* Settings for header cells in a form  */
      background-fill:color;
      font-size:9pt;
      color:#1D7DB3;
      background-color:#f8fbfc;
      font-weight-bold:yes;
      never-alternate:yes;  
}   

CELL.ia-form-separator {    /* Settings for cells separating two form instances */	
      background-fill:none;    /* Invisible cell making the separation */
      border-top-style:none;
      border-right-style:none;
      border-bottom-style:none;
      border-left-style:none;
      border-top-width:0;
      border-right-width:0;
      border-bottom-width:0;
      border-left-width:0;
}