mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-17 22:10:29 +00:00
106 lines
1.8 KiB
CSS
106 lines
1.8 KiB
CSS
@import url('./fonts.css');
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
font-family:
|
|
PingFang SC,
|
|
'Harmony',
|
|
Helvetica Neue,
|
|
Microsoft YaHei,
|
|
sans-serif !important;
|
|
}
|
|
|
|
@layer components {
|
|
.hm-medium {
|
|
font-family:
|
|
PingFang SC,
|
|
'Harmony',
|
|
Helvetica Neue,
|
|
Microsoft YaHei,
|
|
sans-serif !important;
|
|
@apply font-bold;
|
|
}
|
|
.font-ubuntu {
|
|
font-family: 'Ubuntu', sans-serif;
|
|
}
|
|
.font-outfit {
|
|
font-family: 'Outfit', sans-serif;
|
|
}
|
|
.font-libre {
|
|
font-family: 'Libre Baskerville', serif;
|
|
}
|
|
.font-noto-serif {
|
|
font-family: 'Noto Serif SC', serif;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
-webkit-border-radius: 2em;
|
|
-moz-border-radius: 2em;
|
|
border-radius: 2em;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgb(147, 147, 153, 0.5);
|
|
-webkit-border-radius: 2em;
|
|
-moz-border-radius: 2em;
|
|
border-radius: 2em;
|
|
}
|
|
|
|
.monaco-editor {
|
|
outline: none !important;
|
|
border-radius: 5px !important;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.monaco-editor,
|
|
.monaco-editor-background {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.monaco-editor .margin {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.minimap canvas:nth-child(2) {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.monaco-editor .scroll-decoration {
|
|
--vscode-scrollbar-shadow: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.monaco-editor .decorationsOverviewRuler {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.monaco-editor .view-overlays .current-line-exact {
|
|
border-color: rgba(0, 0, 0, 0.2) !important;
|
|
border-radius: 5px !important;
|
|
}
|
|
|
|
.context-view.monaco-menu-container * {
|
|
font-family:
|
|
PingFang SC,
|
|
'Harmony',
|
|
Helvetica Neue,
|
|
Microsoft YaHei,
|
|
sans-serif !important;
|
|
}
|
|
|
|
.ql-hidden {
|
|
@apply hidden;
|
|
}
|
|
.ql-editor img {
|
|
@apply inline-block;
|
|
}
|