blob: 0b17b7a1f9316ff7677d6cb0e0ee5fee691ea329 [file] [log] [blame]
Mateusz Gapski21d6de02020-07-29 14:28:23 +02001@font-face {
2 font-family: "Intel Clear";
3 src: url("~@/env/assets/fonts/Intel_Clear/IntelClear-Light-webfont.woff")
4 format("woff");
5 font-weight: 200;
6 font-style: normal;
7}
8@font-face {
9 font-family: "Intel Clear";
10 src: url("~@/env/assets/fonts/Intel_Clear/IntelClear-Regular-webfont.woff")
11 format("woff");
12 font-weight: 400;
13 font-style: normal;
14}
15@font-face {
16 font-family: "Intel Clear";
17 src: url("~@/env/assets/fonts/Intel_Clear/IntelClear-Bold-webfont.woff")
18 format("woff");
19 font-weight: 700;
20 font-style: normal;
21}
22
23$font-family-base: "Intel Clear", "Helvetica Neue", Helvetica, Arial, sans-serif;
24
Mateusz Gapski4afe2f72020-09-07 07:39:39 +020025$classic-blue: #0068B5;
26$energy-blue: #00C7FD;
Mateusz Gapski21d6de02020-07-29 14:28:23 +020027
Mateusz Gapski4afe2f72020-09-07 07:39:39 +020028$primary: $classic-blue;
Mateusz Gapski21d6de02020-07-29 14:28:23 +020029
30$red: #ed1c24;
31$orange: #ffa300;
32$yellow: #f3d54e;
33$green: #c4d600;
Mateusz Gapski4afe2f72020-09-07 07:39:39 +020034$cyan: $energy-blue;
35$gray: #AEAEAE;
36$dark-gray: #808080;
37$light-gray: #E9E9E9;
Mateusz Gapski21d6de02020-07-29 14:28:23 +020038$black: #000000;
39$white: #ffffff;
40
Mateusz Gapski4afe2f72020-09-07 07:39:39 +020041$danger: #C81326;
42$success: #8BAE46;
43$warning: #FEC91B;
Mateusz Gapski21d6de02020-07-29 14:28:23 +020044
Mateusz Gapski4afe2f72020-09-07 07:39:39 +020045
46$gray-100: $white;
47
48$loading-color: $warning;
49$navbar-color: $classic-blue;
Mateusz Gapski21d6de02020-07-29 14:28:23 +020050
51.status-icon.secondary {
52 fill: $light-gray !important;
53}
Mateusz Gapski4afe2f72020-09-07 07:39:39 +020054
55.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after,
56.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before,
57.custom-control-input:checked ~ .custom-control-label::before {
58 background-color: $primary !important;
59}