// main: style.scss
html {
box-sizing: border-box;
font-size: 16px;
@include media-breakpoint-down(md) {
font-size: 15px;
}
@include media-breakpoint-down(sm) {
font-size: 14px;
}
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
box-sizing: border-box;
}
body {
background: $color__white; /* Fallback for when there is no custom background color defined. */
}
blockquote, q {
quotes: "" "";
&:before,
&:after {
content: "";
}
}
hr {
background-color: $color__background-hr;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
ul, ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
img {
height: auto; /* Make sure images are scaled correctly. */
max-width: 100%; /* Adhere to container width. */
}
table {
margin: 0 0 1rem;
border: 1px solid #eee;
max-width: 100%;
width: 100%;
th, td {
border: 1px solid #eee;
line-height: 1.5;
padding: 0.75rem;
vertical-align: top;
}
thead {
th, td {
vertical-align: bottom;
}
}
}
.no-js {
display: none;
}