html { box-sizing: border-box; height:100%; // font-size: 62.5%; /* setting this allows you to do rem units: 1rem = 10px */ } *, *:before, *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ box-sizing: inherit; } * { &::selection { background: $kb_purple; } } body { &.no_scroll { overflow:hidden; } } hr { background-color: $kb_purple; border: 0; height: 1px; margin-bottom: 1.5em; } @import "lists"; img { height: auto; /* Make sure images are scaled correctly. */ max-width: 100%; /* Adhere to container width. */ } figure { margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */ } @import "tables"; @import "buttons"; @import "links"; @import "hr";