23 lines
419 B
CSS
23 lines
419 B
CSS
/* This reset lifted largely from Josh Comeau's "CSS for JS Devs" course */
|
|
|
|
/* Use a more-intuitive box-sizing model. */
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Remove default margin */
|
|
* {
|
|
margin: 0;
|
|
}
|
|
|
|
/* Allow percentage-based heights in the application */
|
|
html, body {
|
|
min-height: 100%;
|
|
}
|
|
|
|
/* Improve media defaults */
|
|
img, picture, video, canvas, svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|