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
| %meta(name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1") |
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
| %fieldset | |
| %span.checkbox-wrapper | |
| %input{ :type=>"checkbox" } | |
| %span | |
| %label A Checkbox | |
| %fieldset | |
| %span.checkbox-wrapper | |
| %input{ :type=>"checkbox", :checked=>"checked" } | |
| %span |
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
| require "bundler/capistrano" | |
| server "96.126.100.112", :web, :app, :db, primary: true | |
| set :application, "capteste" | |
| set :user, "deployer" | |
| set :deploy_to, "/home/#{user}/apps/#{application}" | |
| set :deploy_via, :remote_cache | |
| set :use_sudo, false | |
| set :port, "3030" |
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
| // top of the main file | |
| // google fonts/external files must be imported in the root file. | |
| @import url(http:/\/fonts.googleapis.com/css?family=Exo:100,200,300,400,500,600,700,800,900,300italic,400italic,500italic,600italic,700italic,800italic,900italic,200italic,100italic); | |
| // @import source sans link from google fonts. |
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> | |
| <p>These divs have white space between them.</p> | |
| </div> | |
| <div> | |
| <p>Because html naturally creates whitespace on the line-breaks.</p> | |
| </div> | |
| <!-- with comments --> | |
| <div> |
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
| <h1>SVG Spike</h1> | |
| <% # rose chart trig | |
| rose_chart_size = 500 | |
| # faux variables | |
| dist1 = 100/2 | |
| dist2 = 200/2 | |
| dist3 = 300/2 | |
| dist4 = 400/2 | |
| dist5 = 500/2 |
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
| # Start Postgres | |
| $ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start | |
| # Stop Postgres | |
| $ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log stop |
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
| $campfire: image-url("campfire.png"); | |
| $campfire-2x: image-url("[email protected]"); | |
| $star: image-url("star.png"); | |
| $tree: image-url("tree.png"); | |
| $campfire-logo: image-url("campsite.png"); | |
| $next-arrow: image-url("travel-camp-to-left.png"); | |
| $prev-arrow: image-url("travel-camp-to-right.png"); | |
| $ants-fruits-flowers-eggs: image-url("ants-fruits-flowers-eggs.png"); | |
| $boomerang: image-url("boomerang.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
| $campfire-size: 100px; | |
| #campfire { | |
| position: fixed; | |
| right: $gutter; | |
| bottom: $gutter/2; | |
| height: $campfire-size; | |
| width: $campfire-size; | |
| background: $campfire-2x; | |
| background-size: 100%; | |
| }//#campfire |
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
| // color palette. | |
| $white: #ffffff; | |
| $grey: #ccc; | |
| $greyblue: #5C6F7B; | |
| $blackblue: #162934; | |
| $lightblue: #29AAE2; | |
| $darkblue: #006FAB; | |
| $lightgreen: #B1BA1D; | |
| $darkgreen: #8D8A00; | |
| $brightred: #C4122F; |