Skip to content

Instantly share code, notes, and snippets.

@FilipeFilpe
Last active July 26, 2019 14:22
Show Gist options
  • Save FilipeFilpe/7c94f1cce5cfa95037ab3fdf477a82f3 to your computer and use it in GitHub Desktop.
Save FilipeFilpe/7c94f1cce5cfa95037ab3fdf477a82f3 to your computer and use it in GitHub Desktop.
/* Aqui podemos ver o resultado gerado no CSS */
div {
color: red; }
div p {
margin: 0; }
div a {
text-decoration: none; }
div ul {
list-style: none; }
div ul li {
color: blue; }
/* Código .sass */
div
color: red
p
margin: 0
a
text-decoration: none
ul
list-style: none
li
color: blue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment