itcss
Version:
CSS starter boilerplate based on the ITCSS pattern
59 lines (49 loc) • 653 B
CSS
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
body {
margin: 0;
text-decoration-skip-ink: auto;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-size-adjust: none;
text-rendering: optimizeLegibility;
}
nav ul,
nav ol {
padding: 0;
margin: 0;
list-style: none outside none;
}
table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
img,
iframe,
video,
audio,
object {
max-width: 100%;
}
img,
iframe {
border: 0 none;
}
img {
height: auto;
display: inline-block;
vertical-align: middle;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 0;
}