👁️🗨️
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | p – balanced for paragraphs or body copy | |
| t – balanced for headlines or titles | |
| Arial, “Helvetica Neue”, Helvetica, sans-serif - p, t | |
| Baskerville, “Times New Roman”, Times, serif - p Baskerville, Times, “Times New Roman”, serif - t | |
| Cambria, Georgia, Times, “Times New Roman”, serif - p, t | |
| “Century Gothic”, “Apple Gothic”, sans-serif - p, t | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (function($){ | |
| var touch = {}, touchTimeout; | |
| function parentIfText(node){ | |
| return 'tagName' in node ? node : node.parentNode; | |
| } | |
| function swipeDirection(x1, x2, y1, y2){ | |
| var xDelta = Math.abs(x1 - x2), yDelta = Math.abs(y1 - y2); | |
| if (xDelta >= yDelta) { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Adds the vendor prefixes for calc. | |
| // | |
| // Usage: | |
| // width: calc('30% - 10px'); | |
| // If variables are needed they need to be specified this way. | |
| // width: calc('40% \- %s' % (10px)); | |
| calc() { | |
| // vendors to be used by this function | |
| calc-vendors = webkit moz; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console | 
NewerOlder