2020-12-29 23:37:40 +08:00
|
|
|
@import 'transition/index.less';
|
2020-09-28 20:19:10 +08:00
|
|
|
@import 'var/index.less';
|
|
|
|
|
@import 'public.less';
|
|
|
|
|
@import 'ant/index.less';
|
2021-04-07 23:14:51 +08:00
|
|
|
@import './theme.less';
|
2023-04-05 18:17:55 +08:00
|
|
|
@import './entry.css';
|
2020-09-28 20:19:10 +08:00
|
|
|
|
2020-11-17 17:02:42 +08:00
|
|
|
input:-webkit-autofill {
|
2021-10-25 23:49:03 +08:00
|
|
|
box-shadow: 0 0 0 1000px white inset !important;
|
2020-11-17 17:02:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:-webkit-autofill {
|
|
|
|
|
transition: background-color 5000s ease-in-out 0s !important;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-15 00:13:23 +08:00
|
|
|
html {
|
|
|
|
|
overflow: hidden;
|
2021-10-25 23:49:03 +08:00
|
|
|
text-size-adjust: 100%;
|
2020-12-15 00:13:23 +08:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:19:10 +08:00
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2022-06-26 12:46:27 +08:00
|
|
|
overflow: visible;
|
|
|
|
|
overflow-x: hidden;
|
2020-09-28 20:19:10 +08:00
|
|
|
|
|
|
|
|
&.color-weak {
|
|
|
|
|
filter: invert(80%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.gray-mode {
|
|
|
|
|
filter: grayscale(100%);
|
|
|
|
|
filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-05 22:13:19 +08:00
|
|
|
a:focus,
|
2021-02-20 00:08:22 +08:00
|
|
|
a:active,
|
|
|
|
|
button,
|
|
|
|
|
div,
|
2021-03-09 23:03:32 +08:00
|
|
|
svg,
|
2021-02-20 00:08:22 +08:00
|
|
|
span {
|
2022-06-26 12:46:27 +08:00
|
|
|
outline: none;
|
2021-02-05 22:13:19 +08:00
|
|
|
}
|
2023-06-12 10:44:20 +08:00
|
|
|
|
|
|
|
|
// 保持 和 windi 一样的全局样式,减少升级带来的影响
|
|
|
|
|
ul {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|