123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /**** VARIABLES ****/
- /*** COULEURS ****/
-
- mainColor =
- secondColor =
- thirdColor =
- fourthColor =
-
- fontColor =
-
- darkGrey =
- rgbGrey = rgba(25,25,25,0.3)
- grey =
- lightGrey =
- grey-hover =
-
- folder-hover =
- files-hover = rgba(155,193,235,0.2)
-
- off-white =
-
- darkBlue =
- blue =
- lightBlue =
-
- red =
-
- // c2a btn color in general context ; meaning every context but specific one related to file type (file, pageHtml, issues, threads ...)
- btnCallAction =
- btnCallAction-hover = darken(btnCallAction, 15%)
-
- threadColor =
-
- htmlColor =
- darkHtmlColor = darken(htmlColor, 15%)
-
- markdownColor =
-
- fileColor =
- lightFileColor = lighten(fileColor, 15%)
-
- taskColor =
-
- issueColor =
-
- /** Role Color **/
- gestionnaire =
- lecteur =
- contributeur =
- responsable =
-
- /** Btn call to action dashboard **/
- writefile =
- importfile =
- calendar = red
- explore =
-
-
- /*************************/
- /**** BOX SHADOW ****/
- shadow-bottom = 0px 0px 5px 1px
- shadow-right = 2px 2px 5px 0px
- shadow-all = 1px 1px 5px 2px
- shadow-all-side-blue = 0px 0px 1px 1px lightBlue
- shadow-all-side-green = 0 0 1px 2px green
- shadow-all-btn = 0 0 3px 3px lightBlue
-
- /***********************/
- /**** MEDIA QUERIES ****/
- min-xs = 0px
- max-xs = 575px
-
- min-sm = 576px
- max-sm = 767px
-
- min-md = 768px
- max-md = 991px
-
- min-lg = 992px
- max-lg = 1199px
-
- min-xl = 1200px
-
|