Skip to content

Instantly share code, notes, and snippets.

View intermundos's full-sized avatar

Anton St. intermundos

View GitHub Profile
@intermundos
intermundos / favicon.ico
Last active April 20, 2017 09:31
favicon.ico disable
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
$mq-324: 324px;
$mq-768: 768px;
$mq-1024: 1024px;
$mq-1200: 1200px;
$mq-1600: 1600px;
@function between($to, $from, $toWidth, $fromWidth) {
$slope: ($to - $from) / ($toWidth - $fromWidth);
$base: $from - $slope * $fromWidth;
@intermundos
intermundos / box-sizing.css
Last active July 8, 2018 08:14
CSS box sizing #css #box-sizing
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}