vben
2021-02-17 4d7001bbcf3ff6e62deb967cb1c15b443b8aaff4
提交 | 用户 | age
116a1f 1 @import 'transition/index.less';
2f6253 2 @import 'var/index.less';
3 @import 'public.less';
4 @import 'ant/index.less';
5
6 *,
7 *::before,
8 *::after {
9   padding: 0;
10   margin: 0;
11   box-sizing: border-box;
12 }
13
aaae66 14 :root {
V 15   -moz-tab-size: 4;
16   tab-size: 4;
17 }
18
0b6110 19 input:-webkit-autofill {
V 20   -webkit-box-shadow: 0 0 0 1000px white inset !important;
21 }
22
23 :-webkit-autofill {
24   transition: background-color 5000s ease-in-out 0s !important;
25 }
26
0c28ff 27 // Background color setting in full screen state in each browser
V 28 ::backdrop,
29 html,
30 *:fullscreen,
31 *:-webkit-full-screen,
32 *:-moz-full-screen {
33   z-index: 1;
34   background-color: #fff !important;
35 }
36
a65ad9 37 html {
V 38   overflow: hidden;
aaae66 39   line-height: 1.15;
V 40   -webkit-text-size-adjust: 100%;
a65ad9 41 }
V 42
2f6253 43 html,
44 body {
45   width: 100%;
46   height: 100%;
8f332e 47   overflow: visible !important;
V 48   overflow-x: hidden !important;
2f6253 49
50   &.color-weak {
51     filter: invert(80%);
52   }
53
54   &.gray-mode {
55     filter: grayscale(100%);
56     filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
57   }
58 }
59
60 body {
aaae66 61   font-family: system-ui, -apple-system, 'Segoe UI', Microsoft YaHei, Arial, sans-serif,
V 62     Helvetica Neue, Helvetica, Pingfang SC, Hiragino Sans GB, Roboto, helvetica neue, noto sans,
63     apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;
2f6253 64 }
65
66 ul,
67 ol {
68   list-style: none;
69 }
70
71 li {
72   list-style-type: none;
73 }
74
75 a:focus,
76 a:active {
77   outline: none;
78 }
79
aaae66 80 hr {
V 81   height: 0;
82   color: inherit;
83 }
84
85 abbr[title] {
86   text-decoration: underline dotted;
87 }
88
89 b,
90 strong {
91   font-weight: bolder;
92 }
93
94 code,
95 kbd,
96 samp,
97 pre {
98   font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
99   font-size: 1em;
100 }
101
102 small {
103   font-size: 80%;
104 }
105
106 sub,
107 sup {
108   position: relative;
109   font-size: 75%;
110   line-height: 0;
111   vertical-align: baseline;
112 }
113
114 sub {
115   bottom: -0.25em;
116 }
117
118 sup {
119   top: -0.5em;
120 }
121
122 table {
123   text-indent: 0;
124   border-color: inherit;
2f6253 125 }
126
127 button,
aaae66 128 input,
V 129 optgroup,
130 select,
131 textarea {
132   margin: 0;
133   font-family: inherit;
134   font-size: 100%;
135   line-height: 1.15;
2f6253 136 }
137
aaae66 138 button,
V 139 select {
140   text-transform: none;
2f6253 141 }
142
aaae66 143 button,
V 144 [type='button'],
145 [type='reset'],
146 [type='submit'] {
147   -webkit-appearance: button;
148 }
149
150 ::-moz-focus-inner {
151   padding: 0;
152   border-style: none;
153 }
154
155 :-moz-focusring {
156   outline: 1px dotted ButtonText;
157 }
158
159 :-moz-ui-invalid {
160   box-shadow: none;
161 }
162
163 legend {
164   padding: 0;
165 }
166
167 progress {
168   vertical-align: baseline;
169 }
170
171 ::-webkit-inner-spin-button,
172 ::-webkit-outer-spin-button {
173   height: auto;
174 }
175
176 [type='search'] {
177   outline-offset: -2px;
178   -webkit-appearance: textfield;
179 }
180
181 ::-webkit-search-decoration {
182   -webkit-appearance: none;
183 }
184
185 ::-webkit-file-upload-button {
186   font: inherit;
187   -webkit-appearance: button;
188 }
189
190 summary {
191   display: list-item;
2f6253 192 }