Skip to content

Instantly share code, notes, and snippets.

@gorillawit
Created December 28, 2014 09:11
Show Gist options
  • Save gorillawit/c5cde937bfb390fc3692 to your computer and use it in GitHub Desktop.
Save gorillawit/c5cde937bfb390fc3692 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
menu{
background: #333;
.menu-item{
float: left;
.menu-link{
color: blue;
border-right: 1px solid black;
&:hover, &.active{
color: red;
.homepage &{
color: red;
}
}
}
.ie8 & {
color: red;
@media (min-width: 600px){
color: green;
}
@media (min-width: 900px){
color:purple;
}
&.last .menu-link{
border-right: none;
}
}
}
}
menu {
background: #333;
}
menu .menu-item {
float: left;
}
menu .menu-item .menu-link {
color: blue;
border-right: 1px solid black;
}
menu .menu-item .menu-link:hover, menu .menu-item .menu-link.active {
color: red;
}
.homepage menu .menu-item .menu-link:hover, .homepage menu .menu-item .menu-link.active {
color: red;
}
.ie8 menu .menu-item {
color: red;
}
@media (min-width: 600px) {
.ie8 menu .menu-item {
color: green;
}
}
@media (min-width: 900px) {
.ie8 menu .menu-item {
color: purple;
}
}
.ie8 menu .menu-item.last .menu-link {
border-right: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment