mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
42 lines
701 B
SCSS
42 lines
701 B
SCSS
@import "./transition";
|
|
@import "./element-plus";
|
|
@import "./sidebar";
|
|
@import "./dark";
|
|
|
|
/* 自定义全局 CssVar */
|
|
:root {
|
|
/* 左侧菜单展开、收起动画时长 */
|
|
--pure-transition-duration: 0.3s;
|
|
|
|
/* 常用border-color 需要时可取用 */
|
|
--pure-border-color: rgb(5 5 5 / 6%);
|
|
|
|
/* switch关闭状态下的color 需要时可取用 */
|
|
--pure-switch-off-color: #a6a6a6;
|
|
}
|
|
|
|
/* 灰色模式 */
|
|
.html-grey {
|
|
filter: grayscale(100%);
|
|
}
|
|
|
|
/* 色弱模式 */
|
|
.html-weakness {
|
|
filter: invert(80%);
|
|
}
|
|
|
|
.danger {
|
|
color: #F56C6C;
|
|
}
|
|
.doc-view {
|
|
.api-description {
|
|
font-size: 14px;
|
|
a {
|
|
color: #406eeb;
|
|
}
|
|
}
|
|
.is-bordered-label {
|
|
width: 200px !important;
|
|
}
|
|
}
|