Skip to content

Instantly share code, notes, and snippets.

@hidaytrahman
Last active October 14, 2016 12:18
Show Gist options
  • Save hidaytrahman/734e5be5e445fcf4cac7f75340425c40 to your computer and use it in GitHub Desktop.
Save hidaytrahman/734e5be5e445fcf4cac7f75340425c40 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
$color : red;
body{
background: $color;
}
ul,ol{
li{
float:left;
a{
font-size:14px;
&:hover{
color:#fff;
}
}
}
}
body {
background: red;
}
ul li, ol li {
float: left;
}
ul li a, ol li a {
font-size: 14px;
}
ul li a:hover, ol li a:hover {
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment