Skip to content

Instantly share code, notes, and snippets.

@AdamHjerpe
AdamHjerpe / _responsive-font-size.scss
Created September 11, 2013 18:19
Making the base font-size reponsive
///////////////
// Variables //
///////////////
// Breakpoints
$break-small: 840px;
$break-large: 1024px;
////////////////
// Font-sizes //
@AdamHjerpe
AdamHjerpe / _typography.scss
Created September 11, 2013 18:16
Basic Typography Styling
// ////////////////////////////////////
// // Import of fonts for bread text //
// ////////////////////////////////////
// @import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700);
// ///////////////////////////////////////////////////////////////
// // Change p-font variable to match imported font family name //
// ///////////////////////////////////////////////////////////////
@AdamHjerpe
AdamHjerpe / _grid.scss
Last active December 22, 2015 20:29
Base grid
@mixin base-grid {
$width: 100% !default;
$gutter: 1.4% !default;
$columns: 12 !default;
$column_width: $width / $columns;
$prefix: true !default;
$push: true !default;
body {
min-width: $width;
} // body