modification page compte

master
Clément VERDOIRE 3 years ago
parent 69c66f5ece
commit 6ff1594a02

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

@ -4,18 +4,31 @@ import React from 'react';
const Compte = () => { const Compte = () => {
return ( return (
<body> <body>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"></link>
<div className="page_compte"> <div className="page_compte">
{/* Create an account page */} {/* Create an account page */}
<div className="haut_de_page"> <div className="haut_de_page">
<h2 className="titre">Mon Compte</h2> <h2 className="titre">Mon Compte</h2>
<div className="rechLogo"> <div className="rechLogo">
<input type="search" className="search" value=""/> <div className="input_box">
<img className="logo" srcSet="./LogoApp.svg"></img> <input type="text" placeholder="Rechercher..."/>
<span className="search">
<i class="uil uil-search search-icon"></i>
</span>
</div>
<img className="logo" srcSet="./LogoApp.svg"/>
</div> </div>
</div> </div>
<div className="bas_de_page"> <div className="bas_de_page">
<div className="nav_bar_verticale"> <div className="nav_bar_verticale">
<p>nav-bar</p> <img className="logo" srcSet="./logo_person.png"/>
<img className="logo" srcSet="./logo_stats.png"/>
<img className="logo" srcSet="./logo_graphique.png"/>
<img className="logo" srcSet="./logo_calendrier.png"/>
<img className="logo" srcSet="./logo_groupe.png"/>
<img className="logo" srcSet="./logo_parametre.png"/>
</div> </div>
<div className="Compte"> <div className="Compte">
<p>Compte</p> <p>Compte</p>

@ -26,8 +26,8 @@ body {
-webkit-backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
.titre { .titre {
font-size: 40px; font-size: 40px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
} }
.rechLogo { .rechLogo {
@ -35,9 +35,47 @@ body {
flex-direction: row; flex-direction: row;
justify-content: space-between; justify-content: space-between;
.search { .input_box {
display: flex; display: flex;
background-color: lightgrey; justify-content: center;
align-items: center;
position: relative;
height: 40px;
max-width: 350px;
width: 100%;
margin: 30px 30px;
border-radius: 25px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
input {
position: relative;
width: 100%;
height: 100%;
padding: 0 15px 0 65px;
outline: none;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 400;
color: #333;
}
.search {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 60px;
border-radius: 25px 0 0 25px;
.search-icon {
font-size: 30px;
color: black;
}
}
} }
.logo { .logo {
@ -58,8 +96,7 @@ body {
.nav_bar_verticale { .nav_bar_verticale {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: blueviolet; width: 5%;
width: 7%;
height: auto; height: auto;
background: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.3);
@ -72,8 +109,7 @@ body {
.Compte { .Compte {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: lightblue; width: 94.3%;
width: 92%;
height: auto; height: auto;
background: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.3);

Loading…
Cancel
Save