html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*,
*: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/ */
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
body {
background: $color__background-body; /* Fallback for when there is no custom background color defined. */
}
/*--------------------------------------------------------------
# ScrollBar
--------------------------------------------------------------*/
::-webkit-scrollbar {
width:11px;
}
::-webkit-scrollbar-thumb {
background:rgba(0,0,0,0.8);
border:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
border-top-left-radius:0;
border-top-right-radius:0;
}
::-webkit-scrollbar-track {
background:rgba(170,170,170,0.8);
}
blockquote, q {
quotes: "" "";
&:before,
&:after {
content: "";
}
}
hr {
background-color: $color__background-hr;
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. */
vertical-align: top;
}
figure {
margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}
@import "tables";
@import "loader";
@import "gotop";