mirror of
https://github.com/LingChair/LingChair-V0.git
synced 2025-12-08 01:55:50 +08:00
61 lines
1.1 KiB
CSS
61 lines
1.1 KiB
CSS
/*
|
|
* ©2024 满月叶
|
|
* GitHub @MoonLeeeaf
|
|
* 是 UI 美化,好耶!
|
|
*/
|
|
|
|
/* 美化UI */
|
|
|
|
/* 恢复系统字体 */
|
|
body {
|
|
font-family: -apple-system, system-ui, -webkit-system-font;
|
|
}
|
|
|
|
/* 圆角化 */
|
|
.mdui-dialog {
|
|
border-radius: 23px;
|
|
}
|
|
.mdui-menu {
|
|
border-radius: 10px;
|
|
}
|
|
.mdui-menu-item > a {
|
|
padding-right: 3px;
|
|
}
|
|
.mdui-btn:not(.mdui-btn-icon, .mdui-dialog-actions button, .mdui-dialog-actions a) {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
height: 40px;
|
|
border-radius: 10px;
|
|
}
|
|
.mdui-dialog-actions a,
|
|
.mdui-dialog-actions button {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
height: 40px;
|
|
border-radius: 40px;
|
|
}
|
|
.mdui-select-open {
|
|
border-radius: 10px;
|
|
}
|
|
@media screen and (min-width: 768px) {
|
|
.mdui-snackbar {
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
|
|
/* 配色方案 */
|
|
|
|
.mdui-list-item-avatar {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
}
|
|
|
|
/* 背景底色 */
|
|
.mdui-theme-color-auto {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
.mdui-theme-color-auto {
|
|
background-color: #303030;
|
|
}
|
|
}
|