Skip to content

Instantly share code, notes, and snippets.

@bastiantowers
Created July 18, 2014 22:43
Show Gist options
  • Save bastiantowers/7aeadc16af5738df365e to your computer and use it in GitHub Desktop.
Save bastiantowers/7aeadc16af5738df365e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<!doctype html>
<head>
<title>Sass</title>
<meta charset="utf-8">
</head>
<body>
<h1>Title</h1>
</body>
</html>
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
$c-principal: #333;
$main-font: 'Roboto';
body{
background:red;
font-family:$main-font, 'Arial';
}
// comentario que no compila
/* y este? este comentario sí
compila */
h1{
color: $c-principal;
}
@charset "UTF-8";
body {
background: red;
font-family: "Roboto", "Arial";
}
/* y este? este comentario sí
compila */
h1 {
color: #333333;
}
<!doctype html>
<head>
<title>Sass</title>
<meta charset="utf-8">
</head>
<body>
<h1>Title</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment