/*
------------------------------------------------------------------------
Title        : customer_defs.css: Definition von CSS-Variablen
------------------------------------------------------------------------
             This is an UNPUBLISHED work COPYRIGHT by
         "ArtCom GmbH"; Haferwende 2; D-28357 Bremen; Germany
      It may be used, copied, or distributed only as permitted in a
                            written license.
------------------------------------------------------------------------
Created : 22-12-2014 kk
Version : $Id: customer_defs.css,v 1.6 2019-05-10 08:58:16 kk Exp $
Remarks : Definition von CSS Variablen
          Default-css als Bestandteile des Pakets. Diese css wird ggf.
          durch eine kundenspezifische 'customer_defs.css', sofern eine
          solche Datei in /customer auf dem WebCheck-Server existiert,
          ueberschrieben.
          Vgl. auch: http://www.w3.org/TR/css-variables/

   !!! CSS Variablen funktionieren nicht in allen Browsern (zufriedenstellend)
   !!! Deshalb gibt es einen Alternativ-Mechanismus. Vgl. 'customer.css !!

------------------------------------------------------------------------
*/

:root {
  --foo: ;

  /* New-style-Button: normal display color and color in hover (mouse over)
   * possible values:  html rgb specification i.e. rgb(141,191,68) or
   *                   html color names i.e. LightSlateGray
   * Default: --bigbutt-color: LightSlateGray;
   *          --bigbutt-hover-color: RoyalBlue;
   */
 /*--bigbutt-color: LightSlateGray;
   --bigbutt-hover-color: rgb(141,191,68);*/


  /* New-style-Button: buttons form with and button width&height
   * possible values: width/height in pixel.
   * Default: --bigbutt-frame-width: 300px;
   *          --bigbutt-butt-width: 200px;
   *          --bigbutt-butt-height: 40px;
   * Note: bigbutt-frame-width must be greater than bigbutt-butt-width!
   */
 /*--bigbutt-frame-width: 300px;
   --bigbutt-butt-width: 200px;
   --bigbutt-butt-height: 40px; */

  /* New-style-Button: buttons form with and button width for 'production' mode
   * possible values: width in pixel.
   * Default: --bigbutt-frame-production-width: 600px;
   *          --bigbutt-butt-production-width: 450px;
   *          --bigbutt-butt-booklet-width: 100px;
   * Note: bigbutt-frame-production-width must be greater than
   *       bigbutt-butt-production-width+bigbutt-butt-booklet-width!
   */
 /*--bigbutt-frame-production-width: 600px;
   --bigbutt-butt-production-width: 450px;
   --bigbutt-butt-booklet-width: 100px; */

  /* New-style-Button: font and font size for buttons text
   * Default: 100%/110% Verdana, Arial, Helvetica, sans-serif
   *  font ::= <'font-size'> [ / <'line-height'> ]? <'font-family'>
   *  font-family ::= [[ <family-name> | <generic-family> ],]* [<family-name> | <generic-family>]
     */
 /*--bigbutt-font: 100%/110% Verdana, Arial, Helvetica, sans-serif;*/

  /* Display the product name in login form? possible values: [none|block]
   * Default (=yes): --login-display-prodname: block;
   */
 /*--login-display-prodname: none;*/

  /* New-style-UI: Side- and Titlebars: (draw-)color and background-color
   * possible values:  html rgb specification i.e. rgb(141,191,68) or
   *                   html color names i.e. DimGray
   * Default: --side-and-titlebar-color: white;
   *          --side-and-titlebar-background-color: DimGray;
   */
 /*--side-and-titlebar-color: white;
   --side-and-titlebar-background-color: DimGray;*/

 /* Viewer Background color and corresponding header font color
  * Default: --viewer-background-color: rgb(78,78,78);
  *          --viewer-heading-title-color: white;
  */
 /*--viewer-background-color: rgb(78,78,78);
   --viewer-heading-title-color: white;*/

}

