Created
June 12, 2013 05:41
-
-
Save MaikuDev/5763050 to your computer and use it in GitHub Desktop.
Untitled
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
html, body { | |
height: 100%; | |
width:99.7%; | |
background-color:#F4F4F4; | |
} | |
#contenedor-menu{ | |
background-color:#DD4814; | |
height: 38px; | |
width:99.7%; | |
min-width:786px; | |
border-bottom:2px solid #000; | |
} | |
#menu{ | |
margin:auto; | |
width:500px; | |
background-color:#DD4814 | |
font-family:arial, Helvetica, sans-serif; | |
font-size: 14px; | |
} | |
ul, ol { | |
list-style:none; | |
} | |
.nav li a{ | |
background-color:#DD4814; | |
color:#fff; | |
text-decoration:none; | |
padding:10px 15px; | |
display:block; | |
} | |
.nav li a:hover{ | |
background-color:#E1662F; | |
color:#fff; | |
} | |
.nav > li{ | |
float:left; | |
} | |
.nav li ul{ | |
display:none; | |
position:absolute; | |
min-windth:140px; | |
} | |
.nav li:hover > ul{ | |
display:block; | |
} | |
#contenedor-cuerpo{ | |
background-color:#E7E2DF; | |
width:700px; | |
height:700px; | |
position:relative; | |
top:10%; | |
left:18%; | |
right:18%; | |
} |
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
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<title>Titulo de la web</title> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
<div id="contenedor-menu"> | |
<div id="menu"> | |
<ul class="nav"> | |
<li><a href="">Inicio</a></li> | |
<li><a href="">Servicios</a> | |
<ul> | |
<li><a href="">Servicio 1</a></li> | |
<li><a href="">Servicio 2</a></li> | |
<li><a href="">Servicio 3</a></li> | |
</ul> | |
</li> | |
<li><a href="">Misión</a></li> | |
<li><a href="">Visión</a></li> | |
<li><a href="">Contactanos</a></li> | |
</ul> | |
</div> | |
</div> | |
<div id="contenedor-cuerpo"> | |
</div> | |
</body> | |
</html> |
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
// alert('Hello world!'); |
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
{"view":"separate","fontsize":"60","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment