Created
November 21, 2014 22:51
-
-
Save Thargelion/afb7a03c0efd07f91c73 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav id="botonera"> | |
<ul> | |
<li><a href="#">Inicio</a></li> | |
<li><a href="#">Quienes somos</a></li> | |
<li><a href="#">Servicios</a></li> | |
<li><a href="#">Contacto</a></li> | |
</ul> | |
</nav> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
#botonera{ | |
ul{ | |
list-style-type:none; | |
margin:0; | |
padding:0; | |
li a{ | |
display: block; | |
background: skyblue; | |
width: 200px; | |
padding: 10px 0; | |
margin: 5px auto; | |
text:{ | |
transform: uppercase; | |
align: center; | |
decoration: none; | |
color: white; | |
}//cierro text | |
&:hover{ //& llama al selector actual | |
background: #f90; | |
text-transform:lowercase; | |
} | |
}//cierro li a | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#botonera ul { | |
list-style-type: none; | |
margin: 0; | |
padding: 0; | |
} | |
#botonera ul li a { | |
display: block; | |
background: skyblue; | |
width: 200px; | |
padding: 10px 0; | |
margin: 5px auto; | |
text-transform: uppercase; | |
text-align: center; | |
text-decoration: none; | |
text-color: white; | |
} | |
#botonera ul li a:hover { | |
background: #f90; | |
text-transform: lowercase; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav id="botonera"> | |
<ul> | |
<li><a href="#">Inicio</a></li> | |
<li><a href="#">Quienes somos</a></li> | |
<li><a href="#">Servicios</a></li> | |
<li><a href="#">Contacto</a></li> | |
</ul> | |
</nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment