Skip to content

Instantly share code, notes, and snippets.

@co0kie
Created July 6, 2015 06:48
Show Gist options
  • Save co0kie/a581717822fbdc400911 to your computer and use it in GitHub Desktop.
Save co0kie/a581717822fbdc400911 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<ul>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
</ul>
// ----
// libsass (v3.2.5)
// ----
body{
background: #000;
color: #fff;
}
ul{
list-style: none;
text-align: center;
margin: 0 auto;
position: absolute;
top: 50%; left: 0; bottom: 0; right: 0;
width: 20%;
li{
background: #fff;
margin: 4px 0;
a{
display: block;
padding: 20px;
}
}
}
body {
background: #000;
color: #fff;
}
ul {
list-style: none;
text-align: center;
margin: 0 auto;
position: absolute;
top: 50%;
left: 0;
bottom: 0;
right: 0;
width: 20%;
}
ul li {
background: #fff;
margin: 4px 0;
}
ul li a {
display: block;
padding: 20px;
}
<ul>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment