Skip to content

Commit

Permalink
css header Research
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiopeelaurie committed Feb 5, 2024
1 parent d9afee1 commit a9d5894
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
19 changes: 19 additions & 0 deletions frontend/src/components/CardModel/CardOffer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import ButtonMini from "../Boutons/ButtonMini";
import "./card-model.css";

function CardOffer() {
return (
<div className="card-container">
<h3 className="pourcentage">Titre de l'offre</h3>
<div className="competence">
<h3>HTML, CSS, JAVASCRIPT, REACT</h3>
</div>
<h3 className="label-offre">Titre de l'offre</h3>
<h4 className="entreprise-champs">Nom entreprise</h4>
<p className="p-description "> Description entreprise</p>
<ButtonMini textBtn="Postuler" />
</div>
);
}

export default CardOffer;
6 changes: 3 additions & 3 deletions frontend/src/components/Headers/HeaderLongResearch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import PropTypes from "prop-types";

function HeaderLongResearch({ textTitle, textTitle2 }) {
return (
<header className=" header with-round-bottom ">
<div className=" container header-content">
<header className="header with-round-bottom">
<div className="container-header-content">
<h1>{textTitle}</h1>
<h2>{textTitle2}</h2>
<h2 className="text-title-2">{textTitle2}</h2>
</div>
</header>
);
Expand Down
7 changes: 7 additions & 0 deletions frontend/src/components/Headers/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@
margin-right: 30px;
margin-top: -10px;
}
.container-header-content {
padding-left: 30px;
}

.text-title-2 {
padding-top: 30px;
}

.header .header-content.user {
display: flex;
Expand Down
5 changes: 2 additions & 3 deletions frontend/src/pages/HomeOffer/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ function Home() {
return (
<div id="home">
<HeaderLongResearch
textTitle="Cabinet de recrutement informatique
"
textTitle2="Nos offres d'emploi"
textTitle="Cabinet de recrutement informatique"
textTitle2="Nos offres d'emplois"
/>
<div className="container-page">
<HomeCard />
Expand Down

0 comments on commit a9d5894

Please sign in to comment.