Skip to content

Instantly share code, notes, and snippets.

@waystilos
Created August 31, 2015 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waystilos/f768f32120fd38daf5eb to your computer and use it in GitHub Desktop.
Save waystilos/f768f32120fd38daf5eb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// variables
//Colors
$white: #fff;
$black: #000000;
$red: #ff0000;
//Font Families
$arial: Arial, Helvetica, sans-serif;
$comic: "Comic Sans MS", cursive, sans-serif;
//////////Variables end/////////////
Parent Selector
.entry {
p {
font-size: 2em;
font-weight: 4em;
}
h1 {
font-size: 4em;
color: tomato;
}
a {
text-decoration: none;
color: $red;
&:hover {
text-decoration: underline;
color: $black;
}
}
}
////////Nesting End///////////
Parent Selector
.entry p {
font-size: 2em;
font-weight: 4em;
}
Parent Selector
.entry h1 {
font-size: 4em;
color: tomato;
}
Parent Selector
.entry a {
text-decoration: none;
color: #ff0000;
}
Parent Selector
.entry a:hover {
text-decoration: underline;
color: #000000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment