@inntechcorp/it-design 2.0.77 → 2.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/global.css
CHANGED
|
@@ -1,55 +1,54 @@
|
|
|
1
|
-
|
|
1
|
+
html {
|
|
2
|
+
|
|
3
|
+
font-size: 14px;
|
|
4
|
+
font-weight: 500;
|
|
5
|
+
font-family : "Inter", sans-serif;
|
|
6
|
+
line-height : 1.5;
|
|
7
|
+
color : #555;
|
|
2
8
|
|
|
3
|
-
box-sizing: border-box;
|
|
4
9
|
-webkit-font-smoothing: antialiased;
|
|
5
10
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
+
a {
|
|
12
|
+
text-decoration: none;
|
|
13
|
+
}
|
|
11
14
|
|
|
12
|
-
button,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
font-weight: inherit;
|
|
18
|
-
line-height: inherit;
|
|
19
|
-
color: inherit;
|
|
20
|
-
margin: 0;
|
|
21
|
-
padding: 0;
|
|
22
|
-
text-transform: none;
|
|
23
|
-
}
|
|
15
|
+
button, span, input, textarea {
|
|
16
|
+
font-family: inherit;
|
|
17
|
+
font-size: inherit;
|
|
18
|
+
font-weight: inherit;
|
|
19
|
+
}
|
|
24
20
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
input {
|
|
22
|
+
background: transparent;
|
|
23
|
+
border: none;
|
|
24
|
+
}
|
|
28
25
|
|
|
29
|
-
input {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
26
|
+
input, textarea {
|
|
27
|
+
&::placeholder {
|
|
28
|
+
color: inherit;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
32
|
+
button {
|
|
33
|
+
border: none;
|
|
34
|
+
}
|
|
38
35
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
36
|
+
textarea {
|
|
37
|
+
vertical-align: top;
|
|
38
|
+
vertical-align: text-top;
|
|
39
|
+
}
|
|
44
40
|
|
|
45
|
-
a:hover {
|
|
46
|
-
color: #0083d4;
|
|
47
41
|
}
|
|
48
42
|
|
|
49
|
-
|
|
50
|
-
|
|
43
|
+
*, ::after, ::before {
|
|
44
|
+
box-sizing: border-box;
|
|
45
|
+
-webkit-tap-highlight-color: transparent;
|
|
46
|
+
-webkit-font-smoothing: antialiased;
|
|
47
|
+
margin: 0px;
|
|
48
|
+
outline: none;
|
|
49
|
+
padding: 0px;
|
|
51
50
|
}
|
|
52
51
|
|
|
53
|
-
|
|
54
|
-
outline:
|
|
52
|
+
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
|
|
53
|
+
outline: 0;
|
|
55
54
|
}
|
|
@@ -61,6 +61,32 @@
|
|
|
61
61
|
-webkit-box-shadow: 0 0 0 30px #151d3d inset !important;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
.option {
|
|
65
|
+
display: flex;
|
|
66
|
+
align-items: center;
|
|
67
|
+
cursor: pointer;
|
|
68
|
+
min-width: max-content;
|
|
69
|
+
padding: 10px 30px 10px 15px;
|
|
70
|
+
}
|
|
71
|
+
.option:not(:last-child) {
|
|
72
|
+
margin-bottom: 1px;
|
|
73
|
+
}
|
|
74
|
+
.option:hover {
|
|
75
|
+
background-color: rgba(29, 38, 73, 0.5019607843);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.selected .single, .selected .option span {
|
|
79
|
+
color: #ffffff;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.single, .option span {
|
|
83
|
+
color: rgba(255, 255, 255, 0.6666666667);
|
|
84
|
+
font-weight: 400;
|
|
85
|
+
font-size: 12px;
|
|
86
|
+
line-height: 12px;
|
|
87
|
+
white-space: nowrap;
|
|
88
|
+
}
|
|
89
|
+
|
|
64
90
|
.arrow {
|
|
65
91
|
transition: all 0.25s ease-out;
|
|
66
92
|
margin-left: auto;
|
|
@@ -156,32 +182,6 @@
|
|
|
156
182
|
transition: height 150ms ease-out;
|
|
157
183
|
}
|
|
158
184
|
|
|
159
|
-
.option {
|
|
160
|
-
display: flex;
|
|
161
|
-
align-items: center;
|
|
162
|
-
cursor: pointer;
|
|
163
|
-
min-width: max-content;
|
|
164
|
-
padding: 10px 30px 10px 15px;
|
|
165
|
-
}
|
|
166
|
-
.option:not(:last-child) {
|
|
167
|
-
margin-bottom: 1px;
|
|
168
|
-
}
|
|
169
|
-
.option:hover {
|
|
170
|
-
background-color: rgba(29, 38, 73, 0.5019607843);
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.selected .single, .selected .option span {
|
|
174
|
-
color: #ffffff;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.single, .option span {
|
|
178
|
-
color: rgba(255, 255, 255, 0.6666666667);
|
|
179
|
-
font-weight: 400;
|
|
180
|
-
font-size: 12px;
|
|
181
|
-
line-height: 12px;
|
|
182
|
-
white-space: nowrap;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
185
|
.container {
|
|
186
186
|
display: flex;
|
|
187
187
|
align-items: center;
|