web / style.css
cutiee82's picture
Update style.css
2c74961 verified
raw
history blame
366 Bytes
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
a, a:hover {
color: red;
text-decoration: none;
}
html, body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
img {
max-width: 100%;
height: auto;
}
ul {
list-style: none;
}
ul li:before {
content: "β€” ";
}
main, section {
padding: 10px;
margin: 0 auto;
max-width: 768px;
}