Skip to content

Instantly share code, notes, and snippets.

@AFelipeTrujillo
Created June 11, 2016 14:39
Show Gist options
  • Select an option

  • Save AFelipeTrujillo/cb0229f56129b359903ba5930f7f4e08 to your computer and use it in GitHub Desktop.

Select an option

Save AFelipeTrujillo/cb0229f56129b359903ba5930f7f4e08 to your computer and use it in GitHub Desktop.

Revisions

  1. AFelipeTrujillo created this gist Jun 11, 2016.
    11 changes: 11 additions & 0 deletions hello.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    <html>
    <head>
    <title> Import example of sass</title>
    <link rel="stylesheet" type="text/css" href="style.css"/>
    </head>

    <body>
    <h1>Ejemplo Simple de SASS</h1>
    <h3>Bienvenidos</h3>
    </body>
    </html>
    7 changes: 7 additions & 0 deletions style.scss
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    h1{
    color: #AF80ED;
    }

    h3{
    color: #DE5E85
    }