@driveflux/beam 1.11.14 → 1.11.15
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/base-styles.css +173 -0
- package/dist/styles.css +3396 -0
- package/package.json +1 -1
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
@import "./root.css";
|
|
2
|
+
@import "./datepicker/calendar.css";
|
|
3
|
+
@tailwind base;
|
|
4
|
+
@tailwind components;
|
|
5
|
+
@tailwind utilities;
|
|
6
|
+
|
|
7
|
+
@font-face {
|
|
8
|
+
font-family: "Gotham-Black";
|
|
9
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Black.woff2")
|
|
10
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Black.woff")
|
|
11
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-black.otf")
|
|
12
|
+
format("otf");
|
|
13
|
+
font-weight: 500;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
font-display: swap;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: "Gotham-Light";
|
|
20
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Light.woff2")
|
|
21
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Light.woff")
|
|
22
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-light.otf")
|
|
23
|
+
format("otf");
|
|
24
|
+
font-weight: 300;
|
|
25
|
+
font-style: normal;
|
|
26
|
+
font-display: swap;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: "Gotham-Medium";
|
|
31
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Medium.woff2")
|
|
32
|
+
format("woff2"),
|
|
33
|
+
url("https://driveflux.com/static/fonts/Gotham-Medium.woff") format("woff"),
|
|
34
|
+
url("https://driveflux.com/static/fonts/gotham-medium.otf") format("otf");
|
|
35
|
+
font-weight: 500;
|
|
36
|
+
font-style: normal;
|
|
37
|
+
font-display: swap;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@font-face {
|
|
41
|
+
font-family: "Gotham-Bold";
|
|
42
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Bold.woff2")
|
|
43
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Bold.woff")
|
|
44
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-bold.otf")
|
|
45
|
+
format("otf");
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
font-style: normal;
|
|
48
|
+
font-display: swap;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@font-face {
|
|
52
|
+
font-family: "Gotham-Book";
|
|
53
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Book.woff2")
|
|
54
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Book.woff")
|
|
55
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-book.otf")
|
|
56
|
+
format("otf");
|
|
57
|
+
font-weight: normal;
|
|
58
|
+
font-style: normal;
|
|
59
|
+
font-display: swap;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
html {
|
|
63
|
+
line-height: 1.15;
|
|
64
|
+
-webkit-text-size-adjust: 100%;
|
|
65
|
+
height: 100%;
|
|
66
|
+
box-sizing: border-box;
|
|
67
|
+
line-height: 1.65;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
*,
|
|
71
|
+
*:before,
|
|
72
|
+
*:after {
|
|
73
|
+
box-sizing: inherit;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
body {
|
|
77
|
+
position: relative;
|
|
78
|
+
min-height: 100%;
|
|
79
|
+
margin: 0;
|
|
80
|
+
|
|
81
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu",
|
|
82
|
+
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
83
|
+
font-weight: 400;
|
|
84
|
+
min-width: 320px;
|
|
85
|
+
direction: ltr;
|
|
86
|
+
font-feature-settings: "kern";
|
|
87
|
+
text-rendering: optimizeLegibility;
|
|
88
|
+
-webkit-font-smoothing: antialiased;
|
|
89
|
+
-moz-osx-font-smoothing: grayscale;
|
|
90
|
+
scroll-behavior: smooth;
|
|
91
|
+
font-family: var(--primaryNormal);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
html,
|
|
95
|
+
body {
|
|
96
|
+
background-color: var(--white);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
::selection {
|
|
100
|
+
background-color: var(--primary);
|
|
101
|
+
color: var(--white);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
[role="grid"]:focus {
|
|
105
|
+
outline: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
svg {
|
|
109
|
+
text-rendering: optimizeLegibility;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
h1,
|
|
113
|
+
h2,
|
|
114
|
+
h3 {
|
|
115
|
+
margin: 0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
a {
|
|
119
|
+
color: var(--links);
|
|
120
|
+
text-decoration: none;
|
|
121
|
+
transition: color 0.2s ease;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
a:hover {
|
|
125
|
+
text-decoration: none;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
* {
|
|
129
|
+
overflow: visible;
|
|
130
|
+
box-sizing: border-box;
|
|
131
|
+
text-align: left;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
strong {
|
|
135
|
+
font-family: var(--primaryBold);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.svg-icon {
|
|
139
|
+
width: 100%;
|
|
140
|
+
height: 100%;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
input:-webkit-autofill,
|
|
144
|
+
input:-webkit-autofill:hover,
|
|
145
|
+
input:-webkit-autofill:focus,
|
|
146
|
+
textarea:-webkit-autofill,
|
|
147
|
+
textarea:-webkit-autofill:hover,
|
|
148
|
+
textarea:-webkit-autofill:focus,
|
|
149
|
+
select:-webkit-autofill,
|
|
150
|
+
select:-webkit-autofill:hover,
|
|
151
|
+
select:-webkit-autofill:focus {
|
|
152
|
+
background-color: var(--white) !important;
|
|
153
|
+
-webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
|
|
154
|
+
color: #000 !important;
|
|
155
|
+
font-size: 14px !important;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
li::marker {
|
|
159
|
+
font-size: 15px;
|
|
160
|
+
margin-left: 10px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.full-width {
|
|
164
|
+
width: 100%;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.h-safe-bottom-edge {
|
|
168
|
+
height: env(safe-area-inset-bottom);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
::-ms-reveal {
|
|
172
|
+
display: none;
|
|
173
|
+
}
|