Skip to content

Instantly share code, notes, and snippets.

@steve-king
steve-king / mixins.scss
Created December 12, 2016 15:49
SCSS Mixins
// Font size
//
// Specify font size in px and also in rems for browsers that support it
// Base font size on html should be set to 62.5% (10px)
@mixin font-size($sizeValue) {
font-size: $sizeValue + px;
font-size: ($sizeValue / 10) + rem;
}
@mixin list-reset {
@steve-king
steve-king / burger-icon.scss
Created December 12, 2016 15:48
Animated CSS burger icon (transforms into an X) - add "menu-active" class to body to trigger animation
/* Animated menu icon. CSS only, no SVG */
.menu-icon,
.menu-icon:before,
.menu-icon:after {
display:block;
width:20px;
height:1px;
background:#fff;
position:absolute;
left:0;
@steve-king
steve-king / chevron-icon.scss
Created December 12, 2016 15:45
SCSS - Up/Down toggle animated chevron Icon
.chevron-icon {
display:inline-block;
width:18px;
height:12px;
position:relative;
&:before, &:after {
content:"";
height:2px;
width:58%;