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
    
  
  
    
  | //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
    
  
  
    
  | <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
    
  
  
    
  | <?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
    
  
  
    
  | <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
    
  
  
    
  | // ---- | |
| // 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
    
  
  
    
  | <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Page Title</title> | |
| <!-- Description of the page (limit to 150 characters) --> | 
  
    
      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
    
  
  
    
  | {: .class-name } | 
  
    
      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
    
  
  
    
  | sudo chown -R $(whoami) ~/.valet |