web / style.css
smileycutie0's picture
Update style.css
1c9b804 verified
raw
history blame
416 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;
}
h1, h2, h3, h4, h5, h6 {
text-align: center;
}
img {
max-width: 100%;
height: auto;
}
ul {
list-style: none;
}
ul li:before {
content: "β€” ";
}
main, section {
padding: 10px;
margin: 0 auto;
max-width: 768px;
}