mirror of
https://github.com/Jerryplusy/rc-plugin.git
synced 2025-10-14 16:19:18 +00:00
42 lines
737 B
CSS
42 lines
737 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/** 代码字体 */
|
|
@font-face {
|
|
font-family: "FZB";
|
|
src: url("../../resources/font/FZB.ttf");
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
font-family: "FZB", serif;
|
|
box-sizing: border-box;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
/* 自定义滚动条 */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
/* 滚动条宽度 */
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
/* 滚动条轨道背景色 */
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #888;
|
|
/* 滚动条滑块颜色 */
|
|
border-radius: 4px;
|
|
/* 滑块圆角 */
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
/* 滑块悬停时的颜色 */
|
|
}
|