Skip to content

Instantly share code, notes, and snippets.

@aishaon
Created January 30, 2020 11:58
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 aishaon/c62b1fb7fdcb5ff42b83569cadb31db2 to your computer and use it in GitHub Desktop.
Save aishaon/c62b1fb7fdcb5ff42b83569cadb31db2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<nav>
<ul>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
</ul>
</nav>
<p>lorem text test lorem text test lorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text test </p>
// ----
// Sass (vundefined)
// Compass (vundefined)
// dart-sass (v1.18.0)
// ----
$primary-color: blue;
@mixin primary-style(){
color: skyblue;
text-transform: uppercase;
}
nav {
background: #dddddd;
ul {
list-style-type: none;
li {
display: inline-block;
@include primary-style;
a {
display: block;
color: $primary-color;
text-decoration: none;
padding: 10px 20px;
&:hover {
background: yellow;
color: black;
}
}
}
}
}
p{
color: $primary-color;
}
nav {
background: #dddddd;
}
nav ul {
list-style-type: none;
}
nav ul li {
display: inline-block;
color: skyblue;
text-transform: uppercase;
}
nav ul li a {
display: block;
color: blue;
text-decoration: none;
padding: 10px 20px;
}
nav ul li a:hover {
background: yellow;
color: black;
}
p {
color: blue;
}
<nav>
<ul>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
<li><a href="#">List Item</a></li>
</ul>
</nav>
<p>lorem text test lorem text test lorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text testlorem text test lorem text test </p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment