Skip to content

Instantly share code, notes, and snippets.

@infurno
Created August 20, 2014 16:34
Show Gist options
  • Select an option

  • Save infurno/439954da9596cec5224e to your computer and use it in GitHub Desktop.

Select an option

Save infurno/439954da9596cec5224e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<h1>H1 Heading</h1>
<h2>H2 Heading</h2>
<h3>H3 Heading</h3>
<h4>H4 Heading</h4>
// ----
// Sass (v3.3.14)
// Compass (v1.0.0)
// ----
//
$font-sizes: 50px;
h1 {
font-size: $font-sizes;
}
h2 {
font-size: precentage($font-sizes * 0.5) ;
}
h3 {
font-size: precentage($font-sizes * 0.2) ;
}
h4 {
font-size: precentage($font-sizes * 0.1) ;
}
h1 {
font-size: 50px;
}
h2 {
font-size: precentage(25px);
}
h3 {
font-size: precentage(10px);
}
h4 {
font-size: precentage(5px);
}
<h1>H1 Heading</h1>
<h2>H2 Heading</h2>
<h3>H3 Heading</h3>
<h4>H4 Heading</h4>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment