devfzn
e28f979870
Mejora de semantica con nuevos divisores 'div', uso de mas pseudo-clases css, background degaradado, uso de mas pseudo-elementos.
288 lines
4.0 KiB
CSS
288 lines
4.0 KiB
CSS
body {
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
header {
|
|
background: #046dfc;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.caja {
|
|
width: 90%;
|
|
position: relative;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
nav {
|
|
position: absolute;
|
|
top: 118px;
|
|
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 {
|
|
color: #cd4f39;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.productos {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
padding: 30px;
|
|
}
|
|
|
|
.productos li {
|
|
display: inline-block;
|
|
text-align: center;
|
|
width: 30%;
|
|
vertical-align: top;
|
|
/*background: #cd4f39; <- se usó para visualizar modificaciones */
|
|
margin: 0 1.5%;
|
|
/*padding: 30px 20px;*/
|
|
padding: 5% 2%;
|
|
box-sizing: border-box;
|
|
/*border-width: 2px; <- estas 3 propiedades se
|
|
border-style: solid; <- pueden reemplazar con la
|
|
border-color: #cd4f39; <- propiedad de abajo */
|
|
border: 2px solid #cd4f39;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.productos li:hover {
|
|
border-color: #046dfc;
|
|
}
|
|
|
|
.productos li:active {
|
|
border-color: #088C19;
|
|
}
|
|
|
|
.productos h2 {
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.productos li:hover h2 {
|
|
font-size: 32px;
|
|
}
|
|
|
|
.prod_descripcion {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.prod_precio {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
background: url(./imagenes/bg.jpg);
|
|
padding: 40px;
|
|
}
|
|
|
|
.copyright {
|
|
color: #6f6f6f;
|
|
font-size: 14px;
|
|
}
|
|
|
|
form {
|
|
margin: 50px 0%;
|
|
}
|
|
|
|
form label, form legend {
|
|
display: block;
|
|
font-size: 20px;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.input-padron {
|
|
display: block;
|
|
margin: 0 0 20px;
|
|
padding: 10px 25px;
|
|
width: 50%;
|
|
}
|
|
|
|
.checkbox {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.enviar {
|
|
width: 40%;
|
|
padding: 15px 0;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #f1f1f1;
|
|
background: #046dfc;
|
|
border: none;
|
|
border-radius: 5px;
|
|
/*transition: 0.3s background;*/
|
|
transition: 0.3s all;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.enviar:hover{
|
|
background-color: #cd4f39;
|
|
transform: scale(1.2) rotate(4deg);
|
|
}
|
|
|
|
table {
|
|
margin: 40px 40px;
|
|
}
|
|
|
|
thead {
|
|
background: #046dfc;
|
|
color: #f1f1f1;
|
|
font-weight: bold;
|
|
}
|
|
|
|
td, th {
|
|
border: 1px solid #046dfc;
|
|
padding: 8px 15px;
|
|
}
|
|
|
|
/* Usados para observar Jerarquía en CSS
|
|
form p {
|
|
color: blue;
|
|
}
|
|
|
|
p {
|
|
color: red;
|
|
}
|
|
|
|
.test {
|
|
color: yellow;
|
|
}
|
|
|
|
p.test {
|
|
color: magenta;
|
|
}
|
|
|
|
#test {
|
|
color: cyan;
|
|
} */
|
|
|
|
/* la configuración de stilo inline sobrescribe todo */
|
|
|
|
/* CSS para el home - index.html */
|
|
|
|
.banner {
|
|
width: 100%;
|
|
}
|
|
|
|
.principal {
|
|
padding: 3em;
|
|
background: #046dfc;
|
|
width: 940px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.titulo-principal {
|
|
text-align: center;
|
|
font-size: 2em;
|
|
margin: 0 0 1em;
|
|
clear:left;
|
|
}
|
|
|
|
/* Alterando estilos con psudo-clases
|
|
.titulo-principal:first-letter {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.titulo-principal:before {
|
|
content: "[";
|
|
}
|
|
|
|
.titulo-principal:after {
|
|
content: "]";
|
|
}
|
|
|
|
p:first-line {
|
|
font-style: italic;
|
|
}*/
|
|
|
|
.principal p{
|
|
margin: 0 0 1em;
|
|
}
|
|
|
|
.principal strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.principal em {
|
|
font-style: italic;
|
|
}
|
|
|
|
.utiles {
|
|
width: 120px;
|
|
float: left;
|
|
margin: 0 20px 20px 0;
|
|
}
|
|
|
|
.mapa {
|
|
padding: 3em 0;
|
|
background: linear-gradient(#046dfc, #cd4f39, #888888);
|
|
}
|
|
|
|
.mapa p {
|
|
margin: 0 0 2em;
|
|
text-align: center;
|
|
}
|
|
|
|
.mapa-contenido {
|
|
width: 940px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.diferencias {
|
|
padding: 3em 0;
|
|
background: #888888;
|
|
}
|
|
|
|
.contenido-diferenciales {
|
|
width: 640px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.lista-diferenciales {
|
|
width: 40%;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.items {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.items:before {
|
|
content: "✦ ";
|
|
}
|
|
|
|
/* .items:nt-child(2) item 2*/
|
|
/* .items:nt-child(2n) item pares */
|
|
.items:first-child {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.imagen-diferenciales {
|
|
width: 60%;
|
|
}
|
|
|
|
.video {
|
|
width: 560px;
|
|
margin: 1em auto;
|
|
}
|