32 lines
306 B
CSS
32 lines
306 B
CSS
body,p {
|
|
font-size: 0;
|
|
margin: 0;
|
|
line-height: 1;
|
|
}
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--textColor);
|
|
}
|
|
|
|
input {
|
|
line-height: 0;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
} |