este es el css
body{
font-family: 'Courgette', cursive;
color: black;
}
header{
background-color: #7a61ab;
padding: 20px 0 ;
}
.caja{
width: 940px;
position: relative;
margin: 0 auto;
}
nav{
position: absolute;
top: 110px;
right: 0px;
}
nav li{
display: inline;
margin: 0 0 0 15px;
}
nav a{
text-transform: uppercase;
color: #000000;
font-weight: bold;
font-size: 22px;
text-decoration: none;
}
nav a:hover{
text-decoration: underline;
font-size: 24px;
}
.productos{
width: 940px;
margin: 0 auto;
padding: 50px;
}
.productos li{
display: inline-block;
text-align: center;
width: 30%;
vertical-align: top;
margin: 0 1.5%;
padding: 30px 20px;
box-sizing: border-box;
border-color: #000000;
border-width: 2px;
border-style: solid;
border-radius: 25px;
}
.productos li:hover{
border-color: blue;
}
.productos li:active{
border-color: orange;
}
.productos h2{
font-size: 30px;
font-weight: bold;
}
.productos li:hover h2{
font-size: 33px;
}
.producto-descripcion{
font-size: 18px;
}
.producto-precio{
font-size: 25px;
font-weight: bold;
margin-top: 10px;
}
footer{
text-align: center;
background: url(imagenes/bg.jpg);
padding: 40px;
}
.copyrigth{
color: yellow;
font-size: 13px;
margin: 20px;
}
form{
margin: 40px 0;
}
form label, form legend{
display: block;
font-size: 20px;
margin: 10px 10px 10px;
font-style: italic;
font-weight: bold;
}
.input-padre{
display: block;
margin: 0 0 20px;
padding: 10px 30px;
width: 50%;
}
.horario{
padding: 10px 0;
}
option{
font-style:normal;
font-weight: bolder;
}
.checkbox{
margin: 30px 0;
}
.enviar{
width: 40%;
padding: 15px 0;
font-size: 18px;
font-style: italic;
font-weight: bold;
color: aquamarine;
background: #007fff;
border: none;
border-radius: 20px;
transition: 1s all;
cursor:pointer;
}
.enviar:hover{
background: purple;
color: whitesmoke;
transform: scale(1.1);
}
table{
margin: 20px auto;
transition: 1s all;
width: 45%;
text-align: center;
padding: 15px 30px;
}
thead{
background: orange;
font-weight: bold;
font-style: italic;
font-size: 24px;
}
td, th{
border: 2px solid black;
}
td{
background: #BBBBBB;
font-style: oblique;
font-weight:bolder;
font-size: 20px;
}
table:hover{
transform: scale(1.1);
}
// inicio de home
.banner{
width: 100%;
}
.principal{
padding: 3em 0;
background: #e8d8ff;
width: 940px;
margin: 0 auto;
}
.titulo-principal{
text-align: center;
font-size: 2em;
margin: 0 0 1em;
clear: left;
text-shadow: 2px 2px 10px purple;
}
.titulo-principal::first-letter{
font-weight: bold;
}
.principal p{
margin: 0 0 1em;
text-align: center;
}
.principal strong{
font-weight: bold;
font-style: italic;
}
.principal em{
font-style: italic;
}
.utensilios{
width: 160px;
float: left;
margin: 0 20px 20px 0;
border-radius: 20px;
}
.mapa{
padding: 3em 0;
background: linear-gradient(#e8d8ff , #7250c0);
}
.mapa p{
margin: 0 0 2em;
text-align: center;
}
.mapa-contenido{
width: 940px;
margin: 0 0px;
}
.diferenciales{
padding: 3em 0;
background: #7250c0;
}
.contenido-diferenciales{
width: 640px;
margin: 0 auto;
}
.lista-diferenciales{
width: 38%;
display: inline-block;
vertical-align: top;
}
.items{
line-height: 2em;
font-style: italic;
}
.items:before{
content: "٭";
}
.items:after{
content: "٭";
}
.items:nth-child(1){
font-weight: bold;}
.imagen-diferenciales{
width: 58%;
border-radius: 15px;
}
.imagen-diferenciales:hover{
border-radius: 30px;
opacity: 0.5;
transition: 700ms;
box-shadow: 10px 10px 30px 8px black;
}
.video{
width: 560px;/tamaño del video/
margin: 2em auto;
background: linear-gradient(#7250c0, #e8d8ff)
}
@media screen and (max-width:480px){
h1{
text-align: center;
}
nav{
position: static;
}
.caja, .principal, .mapa-contenido, .contenido-diferenciales, .video{
width: auto;
}
.lista-diferenciales, .imagen-diferenciales{
width: 100%;
}
}