36 lines
393 B
CSS
36 lines
393 B
CSS
input {
|
|
-webkit-appearance: none !important;
|
|
appearance: none !important;
|
|
}
|
|
|
|
a{
|
|
text-decoration: none;
|
|
color: inherit;
|
|
cursor: alias;
|
|
}
|
|
|
|
button{
|
|
cursor: cell;
|
|
}
|
|
|
|
a p{
|
|
cursor:inherit;
|
|
}
|
|
|
|
a button{
|
|
cursor: inherit;
|
|
}
|
|
|
|
p,h1,h2,h3,h4{
|
|
cursor: inherit;
|
|
pointer-events: none !important;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
ul,ol {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|