modif des formulaires connexion et inscriptions
This commit is contained in:
24
css/formulaire.css
Normal file
24
css/formulaire.css
Normal file
@@ -0,0 +1,24 @@
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
legend {
|
||||
margin: 0 auto;
|
||||
margin-top: 3%;
|
||||
}
|
||||
|
||||
fieldset{
|
||||
margin: 0 auto;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
form {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
input[type="submit"]{
|
||||
font-size: 15px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@@ -0,0 +1,9 @@
|
||||
body
|
||||
{
|
||||
font-style: normal;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
71
css/menu.css
71
css/menu.css
@@ -0,0 +1,71 @@
|
||||
#lineMenu
|
||||
{
|
||||
list-style-type: none;
|
||||
overflow: hidden;
|
||||
background-color: #0064b5;
|
||||
height: 49px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.colonneMenu
|
||||
{
|
||||
float: left;
|
||||
font-size: 17px;
|
||||
padding: 14px 20px;
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
transition: background-color 0.2s, padding 0.2s, font-size 0.2s,transform 0.2s;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.animationButtonMenu:hover
|
||||
{
|
||||
background-color: #0073be;
|
||||
font-size: 19px;
|
||||
padding: 13px 17px;
|
||||
}
|
||||
|
||||
aMenu
|
||||
{
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
#lineSign
|
||||
{
|
||||
list-style-type: none;
|
||||
overflow: hidden;
|
||||
background-color: #0073be;
|
||||
height: 35px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.colonneSign
|
||||
{
|
||||
float: right;
|
||||
font-size: 15px;
|
||||
padding: 10px 8px;
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
transition: font-size 0.2s,transform 0.2s;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.underLineHover:after
|
||||
{
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background-color: white;
|
||||
bottom: -10px;
|
||||
content: "";
|
||||
transition: width 0.2s;
|
||||
}
|
||||
|
||||
.underLineHover:hover:after
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
Reference in New Issue
Block a user