Files
cursopython2023/aula207_ola_django/base/static/global/css/style.css
2023-04-25 08:10:22 -03:00

20 lines
329 B
CSS

/* Reset */
*,
*:after,
*:before {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
font-size: 1.6rem;
background: #f1f1f1;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}