16 lines
200 B
CSS
16 lines
200 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
h4,h3,ul,div{
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: normal;
|
|
}
|
|
ul{
|
|
list-style: none;
|
|
}
|
|
a{
|
|
text-decoration: none;
|
|
} |