Files
frost-navigation/src/assets/css/global.less

104 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-02-06 23:36:46 +08:00
/* -- 全局样式 -- */
// 滚动条
::-webkit-scrollbar {
width: .5rem;
height: .5rem;
2021-02-06 23:36:46 +08:00
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 1rem;
2021-02-08 00:46:15 +08:00
background-color: #EEE;
2021-02-06 23:36:46 +08:00
&:hover {
background-color: @colorPrimary;
}
}
// 标签
html {
transition: font-size @transitionTime;
}
2021-02-06 23:36:46 +08:00
body {
user-select: none;
2021-02-08 00:46:15 +08:00
overflow: hidden;
-webkit-tap-highlight-color: transparent;
}
// 限制长度
.limitLine(@line) {
display: -webkit-box;
-webkit-line-clamp: @line;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.limit-line-1 {
.limitLine(1);
2021-02-06 23:36:46 +08:00
}
2021-04-06 20:50:24 +08:00
.limit-line-3 {
.limitLine(3);
}
// 背景居中
.bgCenter() {
background-position: center;
background-repeat: no-repeat;
}
.bg-center-contain {
.bgCenter();
background-size: contain;
}
.bg-center-cover {
.bgCenter();
background-size: cover;
}
2021-02-06 23:36:46 +08:00
// 阴影
.shadow-1 {
box-shadow: 0 0 .5rem rgba(0, 0, 0, .1);
2021-02-06 23:36:46 +08:00
}
2021-02-08 00:46:15 +08:00
.shadow-2 {
box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .05);
}
.shadow-3 {
box-shadow: 0 .5rem 1rem -0.4rem rgba(0, 0, 0, .12);
2021-02-08 00:46:15 +08:00
}
// 载入中(链接列表)
2021-02-06 23:36:46 +08:00
.loading-link {
background-color: rgba(255, 255, 255, .5) !important;
backdrop-filter: blur(.2rem);
2021-02-06 23:36:46 +08:00
.el-icon-loading {
font-size: 2rem !important;
}
.el-loading-text {
font-size: 1.5rem !important;
}
}
2021-02-08 00:46:15 +08:00
// Element
.el-select-dropdown {
border: none !important;
}