24 lines
244 B
CSS
24 lines
244 B
CSS
/*===================*/
|
|
/* global CSS rules */
|
|
/*===================*/
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
* {
|
|
max-width: var(--measure);
|
|
}
|
|
|
|
/* exceptions to the above rule */
|
|
html,
|
|
body,
|
|
div,
|
|
header,
|
|
nav,
|
|
main,
|
|
footer {
|
|
max-width: none;
|
|
}
|