mirror of
https://gitee.com/JavaLionLi/plus-ui.git
synced 2026-09-13 07:43:43 +08:00
145 lines
1.8 KiB
SCSS
145 lines
1.8 KiB
SCSS
/* Global document styles and lightweight utility helpers. */
|
|
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
background: var(--app-shell-bg);
|
|
font-family:
|
|
'MiSans',
|
|
'HarmonyOS Sans SC',
|
|
'PingFang SC',
|
|
'Source Han Sans SC',
|
|
'Noto Sans SC',
|
|
'Hiragino Sans GB',
|
|
'Microsoft YaHei',
|
|
sans-serif;
|
|
}
|
|
|
|
label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html.dark .svg-icon,
|
|
html.dark svg {
|
|
fill: var(--el-text-color-regular);
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
min-height: 100%;
|
|
}
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
.no-padding {
|
|
padding: 0px !important;
|
|
}
|
|
|
|
.padding-content {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
a:focus,
|
|
a:active {
|
|
outline: none;
|
|
}
|
|
|
|
a,
|
|
a:focus,
|
|
a:hover {
|
|
cursor: pointer;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
div:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.fr {
|
|
float: right;
|
|
}
|
|
|
|
.fl {
|
|
float: left;
|
|
}
|
|
|
|
.pr-5 {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.pl-5 {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.block {
|
|
display: block;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inlineBlock {
|
|
display: block;
|
|
}
|
|
|
|
.clearfix {
|
|
&:after {
|
|
visibility: hidden;
|
|
display: block;
|
|
font-size: 0;
|
|
content: ' ';
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
aside {
|
|
background: #eef1f6;
|
|
padding: 8px 24px;
|
|
margin-bottom: 20px;
|
|
border-radius: var(--app-radius-md);
|
|
display: block;
|
|
line-height: 32px;
|
|
font-size: 16px;
|
|
font-family:
|
|
'MiSans',
|
|
'HarmonyOS Sans SC',
|
|
'PingFang SC',
|
|
'Source Han Sans SC',
|
|
'Noto Sans SC',
|
|
'Hiragino Sans GB',
|
|
'Microsoft YaHei',
|
|
sans-serif;
|
|
color: #2c3e50;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
a {
|
|
color: #337ab7;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: rgb(32, 160, 255);
|
|
}
|
|
}
|
|
}
|