news.css
955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*这一句是用来解决在安卓上的点击出现篮框问题*/
body{ -webkit-tap-highlight-color:rgba(0,0,0,0); }
/*下面是解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-user-modify:read-only;
}
::-webkit-scrollbar {display:none}
input {-webkit-appearance:none; /*去除input默认样式*/}
*{
padding: 0 !important;
margin: 0 !important;
}
img{display:block !important;margin:0.4rem auto 0 !important;text-align: center !important;max-width:100% !important;width: auto !important; height: auto !important;}
div,div *:not(input){
font-size: 0.426rem !important;
background-color: #11121A !important;
color: #CCCCCC !important;
line-height: 1.5;
}
input.inputName{
background-color:#121216 !important;
color:#58DBD7 !important;
}
pre{
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
}