You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
645 B
30 lines
645 B
2 years ago
|
/*---------------------------------------------------------------
|
||
|
| 样式重置 |
|
||
|
---------------------------------------------------------------*/
|
||
|
@import "./conf"; // * {
|
||
|
// margin: 0;
|
||
|
// padding: 0;
|
||
|
// }
|
||
|
|
||
|
page {
|
||
|
height: 100%;
|
||
|
background-attachment: fixed;
|
||
|
color: $fc1;
|
||
|
font-size: 28rpx;
|
||
|
font-family: Source Han Serif SC;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
textarea {
|
||
|
outline: none;
|
||
|
border: none;
|
||
|
-webkit-appearance: none;
|
||
|
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
|
||
|
font-family: Source Han Serif SC;
|
||
|
|
||
|
&:hover {
|
||
|
transition: all 0.15s;
|
||
|
-webkit-touch-callout: none;
|
||
|
}
|
||
|
}
|