modif css page admin (1)

master
Maxence LANONE 3 years ago
parent 4f10889d9e
commit 3f619eaed5

@ -1,7 +1,7 @@
import React from 'react';
import { BrowserRouter, Routes, Route } from 'react-router-dom';
import Connexion from './pages/Connexion';
// import Admin from './pages/Admin.js';
import Admin from './pages/Admin.js';
const App = () => {
return (
@ -11,7 +11,8 @@ const App = () => {
// </Routes>
//</BrowserRouter>
<Connexion />
<Admin/>
// <Connexion />
);
}

@ -23,23 +23,23 @@ const Admin = () => {
<table className="Formulaire_de_connexion">
<tr>
<p className="texte">Nom :</p>
<input id="nom" className="texte_zone" type="text"/>
<input id="nom" className="texte_zone" type="text" placeholder="Nom"/>
</tr>
<tr>
<p className="texte">Prénom :</p>
<input id="prénom" className="texte_zone" type="text"/>
<input id="prénom" className="texte_zone" type="text" placeholder="Prénom"/>
</tr>
<tr>
<p className="texte">Rôle dans l'entreprise :</p>
<input id="rôle" className="texte_zone" type="text"/>
<input id="rôle" className="texte_zone" type="text" placeholder="Rôle"/>
</tr>
<tr>
<p className="texte">Identifiant :</p>
<input id="identifiant" className="texte_zone" type="text"/>
<input id="identifiant" className="texte_zone" type="text" placeholder="Identifiant"/>
</tr>
<tr>
<p className="texte">Mot de passe (par défaut) :</p>
<input id="password" className="texte_zone" type="text"/>
<input id="password" className="texte_zone" type="password" placeholder="Mot de passe (par default)"/>
</tr>
<tr>
<button className="bouton_val_ann" type="submit">Valider</button>

@ -13,7 +13,7 @@ const Connexion = () => {
Connexion
</tr>
<tr>
<input id="pseudo" className="text_zone" type="text" placeholder="Pseudo" />
<input id="pseudo" className="text_zone" type="text" placeholder="Identifiant" />
</tr>
<tr>
<input id="password" className="text_zone" type="password" placeholder="Mot de passe" />

@ -49,7 +49,8 @@
background-color: black;
}
.bouton:hover::before, .bouton:hover::after{
.bouton:hover::before,
.bouton:hover::after {
content: '';
display: block;
position: absolute;
@ -65,33 +66,6 @@
background: black;
animation: 1s jiggle infinite;
}
@keyframes jiggle {
0% {
transform: translate(-5px, -5px);
}
14% {
transform: translate(0px, -5px);
}
28% {
transform: translate(5px, -5px);
}
42% {
transform: translate(5px, 0px);
}
57% {
transform: translate(5px, 5px);
}
71% {
transform: translate(0, 5px);
}
85% {
transform: translate(-5px, 5px);
}
100% {
transform: translate(-5px, 0);
}
}
}
.Titre {
@ -122,7 +96,11 @@
.texte_zone {
width: 600px;
height: 50px;
font-size: 30px;
background-color: transparent;
border-radius: 5px;
border: 0.5px solid;
padding-left: 10px;
padding-right: 10px;
}
.bouton_val_ann {
@ -138,9 +116,11 @@
color: rgb(255, 255, 255);
cursor: pointer;
font-size: 15px;
&:hover {
background-color: rgba(114, 114, 114, 0.371);
}
&:active {
background-color: rgba(68, 68, 68, 0.972);
}

Loading…
Cancel
Save