Création de la page Analyse

master
Clément VERDOIRE 3 years ago
parent ab591634e1
commit c7900491c7

@ -11,30 +11,38 @@ const api = axios.create({
const Analyse = () => {
return (
<div className="page_analyse">
{/* Create an analysis page */}
<div className="haut_de_page">
<h2 className="titre">Analyse</h2>
<div className="rechLogo">
<div className="input_box">
<input type="search" placeholder="Rechercher..."/>
<span className="search">
<i class="uil uil-search search-icon"></i>
</span>
<body>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"></link>
<div className="page_analyse">
{/* Create an analysis page */}
<div className="haut_de_page">
<h2 className="titre">Analyse</h2>
<div className="rechLogo">
<div className="input_box">
<input type="search" placeholder="Rechercher..."/>
<span className="search">
<i class="uil uil-search search-icon"></i>
</span>
</div>
<img className="logo" srcSet="./LogoApp.svg"/>
</div>
<img className="logo" srcSet="./LogoApp.svg"/>
</div>
</div>
<div className="bas_de_page">
<NavigationDashboard />
<div className="Analyse">
<div className="statistiques_1">
<div className="bas_de_page">
<NavigationDashboard />
<div className="Analyse">
<div className="Stat_1">
Tendances des ventes
</div>
<div className="Stat_2">
Statistique n°2
</div>
</div>
</div>
</div>
</div>
</body>
);
};

@ -1,15 +1,12 @@
.page_analyse {
display: flex;
flex-direction: column;
//justify-content: space-evenly;
width: auto;
height: 100vh;
background: rgba(255, 255, 255, 0.143);
border-radius: 15px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(15px);
body {
background-image: url("../../../public/fond_page_connexion.png");
.page_analyse {
display: flex;
flex-direction: column;
justify-content: space-evenly;
width: auto;
height: 100vh;
.haut_de_page {
display: flex;
@ -21,7 +18,7 @@
align-items: center;
margin: 10px 10px 5px 10px;
background: rgba(255, 255, 255, 0.143);
background: rgba(255, 255, 255, 0.3);
border-radius: 15px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
@ -90,7 +87,7 @@
.bas_de_page {
display: flex;
flex-direction: row;
//justify-content: space-between;
justify-content: space-between;
width: auto;
height: 86%;
@ -102,7 +99,7 @@
width: 5%;
margin: 5px 5px 10px 10px;
background: rgba(255, 255, 255, 0.143);
background: rgba(255, 255, 255, 0.3);
border-radius: 15px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
@ -124,20 +121,40 @@
}
}
.statistiques_1 {
.Analyse {
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding: 50px;
width: 1423px;
height: 627px;
margin: 5px 5px 10px 10px;
height: auto;
width: 93%;
margin: 5px 10px 10px 5px;
background: rgba(255, 255, 255, 0.143);
border-radius: 15px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(15px);
.Stat_1 {
display: flex;
width: auto;
height: 50%;
margin: 50px 50px 8px 50px;
background: rgba(255, 255, 255, 0.3);
border-radius: 15px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(15px);
}
.Stat_2 {
display: flex;
width: auto;
height: 50%;
margin: 8px 50px 50px 50px;
background: rgba(255, 255, 255, 0.3);
border-radius: 15px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(15px);
}
}
}
}
}
Loading…
Cancel
Save