Bonjour
J'ai un petit soucis
J'ai un formulaire de connexion et je souhaiterais changer la couleur de mon icône fontawesome enveloppe en blanc
Seulement je ne sais absolument pas comment faire j'ai essayé plusieurs choses mais rien ne marche ...
Voici mon code
J'ai un petit soucis
J'ai un formulaire de connexion et je souhaiterais changer la couleur de mon icône fontawesome enveloppe en blanc
Seulement je ne sais absolument pas comment faire j'ai essayé plusieurs choses mais rien ne marche ...
Voici mon code
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Servialux</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="style.css" media="screen">
</head>
<body>
<div class="corps">
<h1 > Connexion </h1>
<form>
<fieldset class="mail">
<input type="email" placeholder="" style="font-family:Arial, FontAwesome" />
</fieldset>
<fieldset class="mdp">
<input type="password" class="password" placeholder="Mot de passe">
</fieldset>
<input type="submit" name="envoi" value="Connexion">
</form>
<p class="centre"> <a class="oubli" href="#"> Mot de passe oublié ? </a> </p>
<ul class="social_icons">
<li><a href="#" id="fb"> <img src="facebook.png" alt=""></a></li>
<li><a href="#" id="tw"> <img src="twitter.png" alt=""></a></li>
<li><a href="#" id="ld"> <img src="linkedin.png" alt=""></a></li>
</ul>
</div>
</body>
</html>
body{
height: 100vh;
background:#568EBF;
}
@font-face {
font-family: 'FontAwesome';
src: url('fonts/fontawesome-webfont.eot');
src: url('fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff') format('woff'), url('fonts/fontawesome-webfont.ttf') format('truetype'), url('fonts/fontawesome-webfont.svg#OstrichSansCondensedLight') format('svg');
font-weight: normal;
font-style: normal;
}
h1{
font-family: 'OstrichSansBlack';
font-size:35px;
color:#fff;
border-bottom:1px solid #fff; /* Barre blanche */
text-shadow:1px 1px 2px #185477;
line-height:2;
padding:5px 0 0px 0px;
text-align:center;
margin: 3px;
}
h1.inter{
font-family: 'OstrichSansBlack';
font-size:32px;
color:#fff;
border-bottom:1px solid #fff; /* Barre blanche */
text-shadow:1px 1px 2px #185477;
line-height:2;
padding:5px 0 0px 0px;
text-align:center;
margin: 3px;
}
/****************************************************************************************************************
************************************************ Page de connexion **********************************************
*****************************************************************************************************************/
input[type=email]{
background: #67ABE5 left ; width:80%;
height:32px;
border: solid #67ABE5;
margin:auto;
margin-top: 60px;
margin-left: 30px;
color:white;
}
input[type=password]{
width:80%;
height:32px;
border: solid #67ABE5;
margin:auto;
background:#67ABE5 ;
margin-top: 10px;
margin-left: 30px;
color:white;
}
input[type=submit]{
font:italic 20px 'OstrichSansBlack';
background:#67ABE5;
color:#fff;
font-size: 30px;
border-radius:2px;
width:200px;
height: 40px;
border:1px solid #67ABE5 ;
box-shadow:1px 1px 3px #67ABE5;
margin-left:75px;
margin-top: 30px;
}
fieldset{
border:none;
}
.centre{
text-align: center;
}
.oubli{
text-align: center;
text-decoration: none;
color:white;
font-style: 'OstrichSansBlack';
}