UNPKG

iep-ui

Version:

An enterprise-class UI design language and Vue-based implementation

80 lines (79 loc) 1.86 kB
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/ ::-webkit-scrollbar { width: 6px; background-color: transparent; } /*定义滚动条轨道 内阴影+圆角*/ ::-webkit-scrollbar-track { -webkit-box-shadow: none; border-radius: 4px; background-color: transparent; } /*定义滑块 内阴影+圆角*/ ::-webkit-scrollbar-thumb { border-radius: 6px; -webkit-box-shadow: none; background-color: rgba(144, 147, 153, 0.3); } /*定义最上方和最下方的按钮*/ ::-webkit-scrollbar-button { display: none; background-color: #252540; border: 1px solid #252540; } .ant-result-box { color: #000; display: flex; height: 100%; } .ant-result-box-main { max-width: 380px; margin: auto; } .ant-result-box .ant-result-box-icon { text-align: center; font-size: 64px; } .ant-result-box-success .ant-result-box-icon > .anticon { color: #0f6eff; } .ant-result-box-error .ant-result-box-icon > .anticon { color: #f24426; } .ant-result-box-info .ant-result-box-icon > .anticon { color: #0f6eff; } .ant-result-box-warning .ant-result-box-icon > .anticon { color: #ff8000; } .ant-result-box-title { font-size: 18px; line-height: 1.8; text-align: center; color: #333; } .ant-result-box-noAcesstitle { font-size: 18px; text-align: center; color: #333; } .ant-result-box-content { font-size: 14px; line-height: 1.6; color: #999; text-align: center; } .ant-result-box-extra { margin-top: 10px; text-align: center; } .ant-result-box-extra > * { margin-right: 8px; } .ant-result-box-extra > *:last-child { margin-right: 0; }