更新全局样式
This commit is contained in:
parent
a32ee6c281
commit
f21d68a5bc
|
@ -38,6 +38,26 @@ footer{
|
||||||
img{
|
img{
|
||||||
pointer-events: none;
|
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) {
|
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
|
||||||
select:focus, textarea:focus, input:focus {
|
select:focus, textarea:focus, input:focus {
|
||||||
|
|
Loading…
Reference in New Issue