-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path_globals.scss
148 lines (121 loc) · 6.61 KB
/
_globals.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
@import "./globals-sass";
/**
* CSS variables
*
* Note: when adding or modifying these values during development, Stencil must
* be reloaded for the changes to take effect.
*/
:host {
/* General properties */
--mb-font-family: inherit;
--mb-font-size: max(16px, 1rem);
--mb-font-size-desktop: max(20px, 1rem);
--mb-font-style: normal;
--mb-font-weight: 400;
--mb-letter-spacing: normal;
--mb-line-height: 1.5em;
/* Component (UI with buttons) */
--mb-component-background: #F9FAFB;
--mb-component-width: 100%;
--mb-component-font-color: #000;
--mb-component-font-color-secondary: #3C3C43B2;
--mb-component-font-size: 14px;
--mb-component-text-transform: none;
--mb-component-border-color: rgba(120, 120, 128, 0.2);
--mb-component-border-radius: 5px;
--mb-component-border-style: solid;
--mb-component-border-width: 1px;
--mb-component-box-shadow: none;
--mb-component-button-size: #{$button-size};
--mb-component-button-icon-size: #{$button-icon-size};
--mb-component-button-background: #FFF;
--mb-component-button-hover-background: #F9FAFB;
--mb-component-button-background-selected: rgba(72, 178, 232, 0.1);
--mb-component-button-border-color: #D1D5DB;
--mb-component-button-border-color-selected: rgba(120, 120, 128, 0.2);
--mb-component-button-border-color-focus: #9CA3AF;
--mb-component-button-border-color-hover: rgba(60, 60, 67, 0.29);
--mb-component-button-border-color-disabled: rgba(116, 116, 128, 0.08);
--mb-component-button-border-radius: 50%;
--mb-component-button-border-style: solid;
--mb-component-button-border-width: 1px;
--mb-component-button-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
--mb-component-button-box-shadow-disabled: none;
--mb-component-button-classic-background: #0062F2;
--mb-component-button-classic-hover-background: #3A89FD;
--mb-component-button-classic-inverted-hover-background: #F9FAFB;
--mb-component-button-classic-focused-border-color: #142641;
--mb-component-button-classic-inverted-text-color: #374151;
--mb-component-button-classic-inverted-border-color: #9CA3AF;
--mb-component-button-classic-font-size: 14px;
--mb-component-button-classic-font-weight: 700;
--mb-component-button-classic-text-color: #FFF;
--mb-component-button-classic-line-height: 20px;
--mb-component-button-classic-border-radius: 100px;
--mb-component-image-box-border-color: rgba(120, 120, 128, 0.2);
--mb-component-image-box-border-radius: 2px;
--mb-component-image-box-border-width: 1px;
--mb-component-image-box-label-height: #{$padding-unit-large};
--mb-component-image-box-label-color: rgba(60, 60, 67, 0.5);
--mb-component-image-box-label-font-size: 0.875em;
--mb-component-image-box-label-font-weight: 400;
--mb-component-image-box-cta-height: #{$padding-unit-large + $padding-unit-small};
--mb-component-image-box-cta-label-height: #{$padding-unit-large + $padding-unit-small};
--mb-component-image-box-cta-color: #48B2E8;
--mb-component-image-box-cta-font-size: 0.875em;
--mb-component-image-box-cta-font-weight: 600;
--mb-component-image-box-file-color: #000;
--mb-component-image-box-file-font-weight: 400;
--mb-component-action-buttons-justify-content: flex-end;
--mb-component-action-buttons-gap: 8px;
--mb-component-action-label: block;
--mb-component-action-label-font-size: 14px;
/* Camera scanning UI */
--mb-blur-filter: 27px;
--mb-blur-scanning-line: 4px;
--mb-toolbar-color: #FFF;
--mb-toolbar-border-color: #FFF;
--mb-toolbar-border-radius: 4px;
--mb-toolbar-list-border-radius: 4px;
--mb-toolbar-list-item-border-radius: 2px;
--mb-toolbar-list-item-active-text-color: #0062F2;
--mb-toolbar-list-item-active-background-color: #E7F0FF;
--mb-toolbar-selection-width: 298px;
--mb-toolbar-list-background: #FFF;
--mb-toolbar-list-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05), 0px 2px 24px rgba(0, 0, 0, 0.1);
--mb-toolbar-camera-name-font-weight: 500;
--mb-reticle-size: 6em;
/* User feedback (messages below buttons) */
--mb-feedback-font-color-error: #F43F5E;
--mb-feedback-font-color-info: #6B7280;
--mb-feedback-font-size: 12px;
--mb-feedback-font-style: normal;
--mb-feedback-font-weight: 400;
--mb-feedback-letter-spacing: normal;
--mb-feedback-line-height: 16px;
--mb-feedback-text-transform: none;
/* Overlays */
--mb-overlay-draganddrop-background: #DCEAFF;
--mb-overlay-draganddrop-background-error: #FFEAEE;
--mb-overlay-draganddrop-border-color: #3A89FD;
--mb-overlay-draganddrop-text-color: #0062F2;
--mb-overlay-draganddrop-text-error-color: #E11D48;
--mb-overlay-draganddrop-border-color-error: #FF2D55;
--mb-overlay-draganddrop-border-style: dashed;
--mb-overlay-gallery-experience-background: rgba(0, 0, 0, 0.6);
--mb-overlay-gallery-experience-font-color: #FFF;
--mb-overlay-gallery-experience-font-size: 1em;
--mb-overlay-gallery-experience-font-weight: 500;
--mb-overlay-gallery-experience-line-height: 1.5em;
--mb-overlay-deviceselection-background: rgba(17, 24, 39, 0.15);
/* Modals */
--mb-modal-title-font-size: 1em;
--mb-modal-title-line-height: 2em;
--mb-modal-content-font-size: 0.875em;
--mb-modal-content-line-height: 1.4em;
--mb-modal-border-radius: 8px;
--mb-modal-background: #FFFFFF;
}