Open terminal and type:
1. Create a directory at ~/bin:
mkdir ~/bin
2. Copy Sublime executable to your ~/bin directory:
html { | |
height: 100%; | |
background: radial-gradient(ellipse at bottom, #000 0%, #111 100%); | |
overflow: hidden; | |
} | |
body { | |
margin: 0; | |
} |
tap 'caskroom/cask' | |
brew 'git' | |
brew 'npm' | |
brew 'yarn', args: ["ignore-dependencies"] | |
brew 'heroku' | |
brew 'openssl' | |
brew 'watchman' | |
cask 'the-unarchiver' |
# ==================================== | |
# Obfuscate email | |
# Adapted from: | |
# http://stackoverflow.com/questions/483212/effective-method-to-hide-email-from-spam-bots2 | |
# Usage: | |
# = mailto('hi@email.com', 'Get in touch', 'btn btn--nav') | |
# ==================================== | |
MAIL_TO = 'mailto:' | |
AT = '@' | |
DOT = '.' |
// ---- | |
// Sass (v3.4.6) | |
// Compass (v1.0.1) | |
// ---- | |
// ---------- // | |
// Sass stuff // | |
// ---------- // | |
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// Susy (v2.1.3) | |
// ---- | |
@import "susy"; | |
// Loop! |
header.row | |
.container | |
.site-brand | |
= link_to 'Waza', '/' | |
nav.nav | |
ul.list.list--nav | |
li.list__item = link_to 'Sobre', '/', class: 'list__link' | |
li.list__item = link_to 'Projetos', '/', class: 'list__link' |
/ Hero | |
.row | |
.hero | |
.container | |
h1.hero__title Nós sómos Waza | |
h2.hero__subtitle Lorem lipsum dolor sit amet consectue lorem dorem. | |
.hero__links | |
= link_to 'Conheça o nosso trabalho', '/', class: 'btn' | |
/ About |