1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
| html
{
background:#f4f6f7;
font-family: "times new roman",Arial, Helvetica,Verdana,serif;
}
.entete {
padding:40px;
width: auto;
margin: auto;
text-align: center;
background: #edeffc;
}
.contenu{
width: 900px;
height:400px;
margin: 0 auto;
padding: 120px;
}
.form {
margin: 0 auto;
width: 400px;
padding: 30px;
border: 2px solid grey;
letter-spacing:.1em;
font-weight:bold;
/*** Rounded Corners ***/
-moz-border-radius: 5px 20px 5px 20px;
-webkit-border-radius: 5px 20px 5px 20px;
-o-border-radius: 5px 20px 5px 20px;
-ms-border-radius: 5px 20px 5px 20px;
border-radius: 5px 20px 5px 20px;
background: #92c3e8;
/*** Shadow behind the box ***/
-moz-box-shadow:2px 3px 10px #92c3e8;
-webkit-box-shadow:2px 3px 10px #92c3e8;
-o-box-shadow:2px 3px 10px #92c3e8;
}
.h1{
border:1px solid #42596d;
color:#ffe;
font-weight:normal;
font-size: 11px;
background: #eba328;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#42596d', endColorstr='#1a1f24'); /* for IE */
background-image: -moz-radial-gradient(center,0px,center,500px,from(#42596d),to(#1a1f24));
background-image: -webkit-gradient(radial,center top,0,center top,500,from(#42596d),to(#1a1f24));
-webkit-transition: border .6s ease-in;
-moz-transition: border .6s ease-in;
-o-transition: all .6s ease-in;
transition: all .6s ease-in;
text-align: center;
margin: -20px 10px 30px 10px;
-moz-border-radius: 5px 20px 5px 20px;
-webkit-border-radius: 5px 20px 5px 20px;
-o-border-radius: 5px 20px 5px 20px;
-ms-border-radius: 5px 20px 5px 20px;
border-radius: 5px 20px 5px 20px;
}
.labelident {
font-weight: bold;
font-size: 14px;
float: left;
padding: 08px 8px;
/* margin: 10px 0px 0px 0px; */
}
.labelpass {
font-weight: bold;
font-size: 14px;
float: left;
padding: 15px 8px;
}
.ident ,.pass{
float: right;
width: 230px;
padding: 6px;
margin-bottom: 10px;
border: 0px;
}
.buttons{
margin-top: 15px;
margin-left: 160px;
}
.buttons:hover {
color: black;
cursor:pointer;
}
.pied {
padding:5px;
background: #d9d3d3;
width: auto;
margin: auto;
} |
Partager