更新全局样式

This commit is contained in:
al 2024-10-09 17:06:04 +08:00
parent a32ee6c281
commit f21d68a5bc
1 changed files with 20 additions and 0 deletions

View File

@ -38,6 +38,26 @@ footer{
img{
pointer-events: none;
}
input {
/* 移除边框 */
border: none;
/* 移除背景颜色 */
background-color: transparent;
/* 移除内边距 */
padding: 0;
/* 移除外边距 */
margin: 0;
/* 移除默认焦点样式 */
outline: none;
/* 移除圆角 */
border-radius: 0;
/* 移除阴影 */
box-shadow: none;
/* 设置字体 */
font-family: inherit;
font-size: inherit;
color: inherit;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
select:focus, textarea:focus, input:focus {