codecanvas-wizardry / style.css
MarkTheArtist's picture
Start with a totally blank document
70373f3 verified
raw
history blame contribute delete
280 Bytes
/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background-color: #fff;
}