10/03/2013, 14:33
|
| | Fecha de Ingreso: septiembre-2011
Mensajes: 32
Antigüedad: 13 años, 3 meses Puntos: 0 | |
Respuesta: Error imagen fondo (?) Lo he probado y me sigue pasando. Lo he puesto tanto en body como en #all. Te dejo aqui el codigo css completo haber :/
Código:
html, body {
height: 95%;
margin: 0 auto;
padding: 0px;
width: 100%;
}
body {
overflow-x: hidden;
font-family: "Arial", "Verdana";
background-color: #00B8F5;
}
input[type="text"], input[type="password"] {
width: 160%;
height: 35px;
positon: relative;
margin-top: 7px;
font-size: 16px;
font-weight: 300;
color: #221919;
outline: none;
border: 1px solid rgba(0, 0, 0, .49);
padding-left: 12px;
border-radius: 6px;
background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
background-image: linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
-webkit-box-shadow: inset 0px 2px 0px #d9d9d9;
box-shadow: inset 0px 2px 0px #d9d9d9;
}
input[type="submit"] {
width: 40%;
height: 35px;
position: relative;
margin-top: 7px;
font-size: 16px;
color: #4d4d4d;
outline: none;
border: 1px solid #c3c3c3;
border-radius: 6px;
background-color: #f0eded;
background: -webkit-linear-gradient(top, #fdfcfc, #fbf9f9 50%, #f7f5f6 50%, #f2f0f0);
background: -o-linear-gradient(top, #fdfcfc, #fbf9f9 50%, #f7f5f6 50%, #f2f0f0);
background: -moz-linear-gradient(top, #fdfcfc, #fbf9f9 50%, #f7f5f6 50%, #f2f0f0);
background: linear-gradient(top, #fdfcfc, #fbf9f9 50%, #f7f5f6 50%, #f2f0f0);
cursor: pointer;
}
#all {
background: url("direccion url de la imagen");
background-position: 100% 100%;
}
#login {
position: relative;
margin: auto;
width: 20%;
top: 30%;
}
#logo>img.logo {
width: 30%;
}
#logo {
position: relative;
left: 37%;
}
.button {
width: 43%;
height: 35px;
color: #fff;
font-size: 16px;
border: solid 1px #0076a3;
background: #0095cd;
background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
background: -moz-linear-gradient(top, #00adee, #0078a5);
background:-o-linear-gradient(top, #00adee, #0078a5);
background: linear-gradient(top, #00adee, #0078a5);
display: inline-block;
zoom: 1;
outline: none;
cursor: pointer;
text-align: center;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover{
background: #0086b8;
}
#actionbuttons {
position: relative;
margin: auto;
width: 55%;
left: 17.9%;
margin-top: 1%;
}
|