Skip to content

Instantly share code, notes, and snippets.

@brownman
Created January 29, 2015 13:54
Show Gist options
  • Save brownman/5cb396b7122bfb3cf154 to your computer and use it in GitHub Desktop.
Save brownman/5cb396b7122bfb3cf154 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<script>
var json1 = {site: 'www.google.com'};
</script>
<box>
<h1 class="abc" >sdf</h1>
</box>
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
h1 {
color: blue;
}
.abc {
background: yellow;
border: 5px solid #000;
padding: 20px;
&.a {
color: #222;
:hover {
color: #000000;
}
}
}
h1 {
color: blue;
}
.abc {
background: yellow;
border: 5px solid #000;
padding: 20px;
}
.abc.a {
color: #222;
}
.abc.a :hover {
color: #000000;
}
<script>
var json1 = {site: 'www.google.com'};
</script>
<box>
<h1 class="abc" >sdf</h1>
</box>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment