- -> Um diretorio com arquivos do sass
- -> Uma Task configurada no Grunt/Gulp
- -> code com sass
- -> rodar a task do grunt/gulp para gerar o code do sass to css
- -> linkar o css gerado no file do custom element/polymer/vanilla/x-tag
This file contains 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
<!-- font: https://joselito.ninja/ypsum/ --> | |
<snippet> | |
<content><![CDATA[ | |
A incrível geração de pessoas que escrevem textos na Internet falando de seu grupo restrito como se fosse uma incrível geração. Meu condomínio é o mundo inteiro. Minha timeline do Facebook é o mundo inteiro. A generalização que faço da experiência vivida é um fato irrefutável, pois eu vi e vivi. | |
Estuda, então. Mas estuda, em primeiro lugar, aquilo que te habilite melhor a auxiliar os outros! Comunicação, Marketing, Mídias Sociais, Educação à Distância | |
“O que diabos aconteceu com a GERAÇÃO Y?!” https://medium.com/@carvalho.icaro/o-que-diabos-aconteceu-com-gera%C3%A7%C3%A3o-y-73cd16ccc5c9 |
This file contains 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/sh | |
# homebrew-cask | |
brew tap phinze/homebrew-cask | |
brew install brew-cask | |
# browser | |
brew cask install firefox-aurora | |
brew cask install google-chrome | |
brew cask install google-chrome-canary |
This file contains 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 (window, document) { | |
'use strict'; | |
// Callback function | |
function appendContributors() { | |
/*jshint validthis: true*/ | |
var result = JSON.parse(this.responseText), | |
tpl = '<li class="contributor" itemprop="itemListElement" itemscope itemtype="http://schema.org/Person"><a href="#"><img class="picture" width="90" height="90"></a></li>', | |
str = '', |
This file contains 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
/* ---------------------------------------- *\ | |
VARIABLES | |
\* ---------------------------------------- */ | |
$red: #a32c28; | |
$white: #fff; | |
$lightest-grey: #eee; |
This file contains 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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
uglify: { | |
min: { | |
src: 'src/assets/lista-compras.js', | |
dest: 'lista-compras.min.js' | |
} | |
} | |
}); | |
This file contains 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
module.exports = function(grunt){ | |
grunt.InitConfig({ | |
min:{ | |
dist:{ | |
src: 'add.js', | |
dest: 'add.min.js' | |
} | |
} | |
}); | |
}; |