Skip to content

Commit

Permalink
Curso de SASS🌈 de 0 a 100 [07.- Operaciones y Listas]
Browse files Browse the repository at this point in the history
  • Loading branch information
programadornovato committed Aug 5, 2019
1 parent e45d0a4 commit 7d545f5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@

*.scssc
6 changes: 3 additions & 3 deletions rutaCss/estilo.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rutaCss/estilo.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions rutaSass/_mixin.scss
Expand Up @@ -3,12 +3,14 @@
width: $ancho;
height: $alto;
}
$color:#333;
$colores:(#333,#666,#888,#aaa);
#rec1{
@include forma(red,300px,50px);
@include forma(nth($colores,4),300px,50px);
}
#rec2{
@include forma(#aaa,400px,20px);
@include forma($color*2,400px,20px);
}
#rec3{
@include forma(green,100px,50px);
@include forma($color*4,100px,50px);
}

0 comments on commit 7d545f5

Please sign in to comment.