Skip to content

Instantly share code, notes, and snippets.

View tedw's full-sized avatar

Ted Whitehead tedw

  • Threespot
  • Washington, DC
View GitHub Profile
@tedw
tedw / input.scss
Created August 9, 2022 18:11 — forked from matbrady/input.scss
Generated by SassMeister.com.
$grid-columns: 1;
$layoutBreakPoints: (
"med-small" : 580px,
);
@each $name, $width in $layoutBreakPoints {
.u-col {
@for $col from 1 through $grid-columns {
&-test {
background: red ;
@tedw
tedw / helvetica-neue.scss
Last active October 27, 2022 20:14 — forked from gpessia/Helvetica Neue stack
Helvetica Neue CSS font-family stacks
// Fallback font stack
// These system fonts support multiple weights.
// Demo http://output.jsbin.com/morukug/quiet
// Cross-browser results https://workflowy.com/s/BHZf.wXqmEGAjs4
$sans: -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
/**
* Helvetica Neue Normal
*/
@tedw
tedw / SassMeister-input.scss
Created March 3, 2017 20:08
Precise control over responsive typography for Sass
// ----
// libsass (v3.3.6)
// ----
// =========================================================================
//
// PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS
// ---------------------------------------------------
// Indrek Paas @indrekpaas
//
@tedw
tedw / SassMeister-input.scss
Created March 3, 2017 20:08
Precise control over responsive typography for Sass
// ----
// libsass (v3.3.6)
// ----
// =========================================================================
//
// PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS
// ---------------------------------------------------
// Indrek Paas @indrekpaas
//
@tedw
tedw / SassMeister-input.scss
Created March 3, 2017 20:08
Precise control over responsive typography for Sass
// ----
// libsass (v3.3.6)
// ----
// =========================================================================
//
// PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS
// ---------------------------------------------------
// Indrek Paas @indrekpaas
//
function countCSSRules() {
var results = '',
log = '';
if (!document.styleSheets) {
return;
}
for (var i = 0; i < document.styleSheets.length; i++) {
countSheet(document.styleSheets[i]);
}
function countSheet(sheet) {