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
    
  
  
    
  | // ---- | |
| // libsass (v3.3.6) | |
| // ---- | |
| $colors: ( | |
| lightblue: lightblue, | |
| blue: blue, | |
| black: #000000, | |
| white: #ffffff | |
| ); | 
  
    
      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
    
  
  
    
  | <div class="card"> | |
| <div class="card__header"> | |
| <h2 class="card__title">Title text here</h2> | |
| </div> | |
| <div class="card__body"> | |
| <img class="card__img" src="some-img.png"> | |
  
    
      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
    
  
  
    
  | <?php | |
| foreach (glob("*.txt") as $filename) { | |
| echo "$filename size " . filesize($filename) . "\n"; | |
| } | |
| preg_grep('#\.zip$#', glob('/dir/somewhere/*'), PREG_GREP_INVERT) | |
| // http://cowburn.info/2010/04/30/glob-patterns/ | |
| if (fnmatch("*gr[ae]y", $color)) { | 
  
    
      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
    
  
  
    
  | <ul> | |
| <li>item</li> | |
| <li>item</li> | |
| <li>item</li> | |
| <li>item</li> | |
| <li>item</li> | |
| </ul> | |
| <ol> | |
| <li>item</li> | 
  
    
      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
    
  
  
    
  | //A way to number sections and sub-sections with "Section 1", "1.1", "1.2", etc.: | |
| body { | |
| counter-reset:section; | |
| } | |
| h1 { | |
| counter-reset:subsection; | |
| } | |
| h1:before { | 
  
    
      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
    
  
  
    
  | <div id="chocolate" class="page-section pad-section"> | |
| <div class="page-content"> | |
| <h1>Heading to Section</h1> | |
| <h2>Subheading of Section</h2> | |
| </div> | |
| </div> | |
| <div id="hotpink" class="page-section angled-section"> | |
| <div class="page-content"> | |
| <h1>Heading to Section</h1> | |
| <h2>Subheading of Section</h2> | 
  
    
      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
    
  
  
    
  | <div class="grid-50"> | |
| <div id="book-design" class="image-right-after"> | |
| <h1>Testing</h1> | |
| <p>testing the text testing the text testing the text testing the text testing the text testing the text testing the text testing the text testing the text testing the text </p> | |
| <p><a href="#">button</a></p> | |
| </div> | |
| </div> | |
| <div class="grid-50"> | |
| <div id="book-design-2" class="image-left-after"> | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| git fetch upstream | |
| git checkout master | |
| git merge upstream/master | |
| git merge upstream/master | |
| # If your upstream branch is already setup using | |
| # https://help.github.com/articles/configuring-a-remote-for-a-fork/ | |
| # then you can run this simple shell script to update your fork quickly and easily. | |
| # RUN: $ bash upstream.sh | 
  
    
      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
    
  
  
    
  | html, body { | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| width: 100%; | |
| } | |
| .wrapper { | |
| overflow-x: hidden; | |
| height: 100%; | |
| } | 
  
    
      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
    
  
  
    
  | <div class="section-parallax background-one"> | |
| <div class="block"> | |
| <h2>Section Title</h2> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer placerat ante in magna venenatis, non tempus nunc pharetra. Etiam interdum gravida urna, quis eleifend urna ornare eget. Aenean vehicula mi sit amet lectus gravida vehicula. Ut et lacinia neque.</p> | |
| </div> | |
| </div> | |
| <div class="section-parallax background-two"> | |
| <div class="block"> | |
| <h2>Section Title</h2> |