Created
November 21, 2014 22:51
-
-
Save Thargelion/afb7a03c0efd07f91c73 to your computer and use it in GitHub Desktop.
Revisions
-
Thargelion created this gist
Nov 21, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ <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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ // ---- // 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ #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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ <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>