Blame view

templates/html/common-blue/zim-variables.css 2.9 KB
3fa08b0f7   William Daniau   Ajout d'un thème ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  
      /* Variables */
      
      :root {
          /* General */
          --main-header-color: #437484;                   /* Headers color                    */
          --main-link-color: #008ab8;                        /* Links color                      */
          --main-strike-color: grey;                      /* Strike color                     */
          --main-pre-color: darkmagenta;                  /* Verbatim bloc color              */
          --main-tt-color: darkmagenta;                   /* Inline verbatim                  */
          --main-code-color: saddlebrown;                 /* Code color (if hljs not used)    */
          
          /* Background
           * 
           * if fond.jpg exists in the resource directory, it will be used as backround
           * image with position and repetition given by :         
           * --main-body-background-position an --main-body-background-repeat
           * 
           * if the image does not exists the color defined by
           * --main-body-background-color 
           * will be used
           */
82560defb   William Daniau   Remplace le gradi...
23
          /*--main-body-background-color: linear-gradient(to right,#8eb7c2,white,white,#8eb7c2);   */
3d2166b8b   William Daniau   Changement de la ...
24
25
26
          --main-body-background-color: #80a5ae;          /* Color of the background body     */
          --main-body-background-position: left;
          --main-body-background-repeat: repeat;
3fa08b0f7   William Daniau   Ajout d'un thème ...
27
28
29
30
31
32
33
34
          
          --main-menu-background-color: #fafafa;          /* Backroung color of side menu     */
          /* Underline really underlined */
          --main-menu-u-decoration: underline;
          --main-menu-u-background-color: white;
          /* Underline Stabilo Version */
          /*--main-menu-u-decoration: none;
          --main-menu-u-background-color: yellow;*/
3d2166b8b   William Daniau   Changement de la ...
35
          --main-page-width: 72em;                    /* Page width */
3fa08b0f7   William Daniau   Ajout d'un thème ...
36
37
38
39
40
41
42
43
44
45
46
          
          
          /* Tables */
          /* Table headers */
          --main-th-color: black;                     /* Table header text color          */
          --main-th-background-color: #bbb;           /* Table header background          */
          /* Table Row and Data */
          --main-tr-even-background-color: #f2f2f2;   /* Even row background color        */
          --main-tr-odd-background-color: white;      /* Odd row background color         */
          --main-tr-hover-background-color: #ddd;     /* Row background color when hover  */
          --main-td-th-border-color: #ddd;            /* Cell's Border color              */
dbd9d86ad   William Daniau   Ajout de nouvelle...
47
48
49
50
51
52
53
          
          /* S5 Presentation variables */
          --main-pres-banner-foreground: #437484;     /* Foreground color on header and footer */
          --main-pres-banner-background: #ccdddd77;   /* Background color on header and fooetr */
          --main-pres-background-color: white;        /* Body background color                 */
          --main-pres-background-repeat: no-repeat;   /* Body background repeat property       */
          --main-pres-background-size: 100%;          /* Body background size property         */        
3fa08b0f7   William Daniau   Ajout d'un thème ...
54
      }