Compare commits

..

14 Commits

Author SHA1 Message Date
9b17d23901 Merge pull request 'dev' (#35) from dev into main
Reviewed-on: #35
2025-09-28 17:01:02 +00:00
4ed462c295 Merge pull request 'feature/detailsProject' (#33) from feature/detailsProject into dev
Reviewed-on: #33
2025-09-28 16:58:50 +00:00
08a539f380 Merge pull request 'dev' (#32) from dev into feature/detailsProject
Reviewed-on: #32
2025-09-28 16:58:29 +00:00
7f814c981c Merge branch 'dev' of https://gitea.josserand.ovh/Giovanni-Josserand/Portfolio into dev
# Conflicts:
#	src/components/ProjectDetails/ProjectDetails.css
2025-09-28 18:56:39 +02:00
6806628c01 Merge branch 'feature/responsive' into dev 2025-09-28 18:53:28 +02:00
104b37bfa8 completition of the long description 2025-09-28 18:50:14 +02:00
93c2e9662a Merge pull request 'feature/detailsProject' (#30) from feature/detailsProject into dev
Reviewed-on: #30
2025-09-28 16:48:19 +00:00
4f0619b247 completition of the long description 2025-09-28 18:42:02 +02:00
47db62065b completition of the long description 2025-09-28 18:41:47 +02:00
0c2ea6f01e set project details page responsive 2025-09-21 19:09:21 +02:00
b7826715ea set filter btn responsive 2025-09-21 19:04:16 +02:00
61840f76cf set home section responsive 2025-09-21 19:00:52 +02:00
bf42d752a9 set projects section responsive 2025-09-21 18:23:06 +02:00
028f7f5b89 set experiences section responsive 2025-09-21 18:13:00 +02:00
24 changed files with 133 additions and 10 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 368 KiB

After

Width:  |  Height:  |  Size: 367 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 306 KiB

After

Width:  |  Height:  |  Size: 765 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

View File

@ -7,7 +7,7 @@
}
.experiences-container {
width: 50%;
width: 100%;
position: relative;
display: flex;
flex-direction: column;
@ -23,3 +23,15 @@
height: 100%;
background-color: rgba(176, 176, 176, 0.2);
}
@media (max-width: 768px) {
.experiences-container {
width: 90%;
align-items: flex-start;
margin-right: 20px;
}
.experiences-container::before {
left: 20px;
}
}

View File

@ -125,3 +125,10 @@
color: var(--important-color);
border-color: var(--important-color);
}
@media (max-width: 480px) {
.filter-btn {
top: 5em;
right: 20px;
}
}

View File

@ -12,6 +12,8 @@
#home-section h1{
margin-bottom: 0;
margin-left: 40px;
margin-right: 40px;
}
#home-section h2 {
@ -49,5 +51,33 @@
}
@media (max-width: 840px) {
.btn {
margin-bottom: 10%;
}
#home-section p{
max-width: 60%;
}
}
@media (max-width: 656px) {
#home-section h1{
font-size: 3.5rem;
}
#home-section h2 {
font-size: 1.5rem;
}
}
@media (max-width: 584px) {
#home-section h1{
font-size: 3rem;
}
}

View File

@ -41,3 +41,10 @@
background-color: rgba(217, 95, 70, 0.3);
color: var(--important-color);
}
@media (max-width: 768px) {
.nav-list{
gap: 0.5rem;
}
}

View File

@ -18,7 +18,7 @@
background-image: url("/public/assets/images/projectDetailsHeadband.png");
background-size: cover;
&::after { /* Utilise un pseudo-élément pour le dégradé */
&::after {
content: '';
position: absolute;
bottom: 0;
@ -49,6 +49,7 @@
color: var(--text-color);
display: flex;
padding: 0 4%;
gap: 5%;
}
.project-details-content {
@ -80,6 +81,7 @@
list-style: none;
padding: 0;
gap: 1em;
flex-wrap: wrap;
}
@ -170,3 +172,16 @@ aside ul li a:hover {
align-items: center;
gap: 0.5em;
}
.project-details-image {
width: 100%;
margin-bottom: 2%;
}
@media (max-width: 480px) {
.return-button {
top: 7em;
}
}

View File

@ -91,7 +91,9 @@ function ProjectDetails({project}) {
>
{project.long_description}
</ReactMarkdown>
{[...Array(project.nb_image)].map((_, i) => (
<img src={`/assets/images/projects/${project.image_name}/${project.image_name}_${i+1}.png`} alt={project.image_name} className="project-details-image"/>
))}
</div>
<aside>
<ul>

View File

@ -56,3 +56,7 @@
text-align: center;
margin-bottom: 3rem;
}

View File

@ -4,6 +4,8 @@
margin-bottom: 3rem;
padding: 1.5rem;
display: flex;
gap: 6rem;
justify-content: center;
}
.experience-card::before {
@ -21,18 +23,17 @@
.experience-card-left {
width: 50%;
width: 25%;
text-align: end;
margin-right: 8rem;
}
.experience-card-right {
width: 50%;
width: 25%;
}
.experience-company {
color: var(--important-color);
font-size: 1.2rem;
font-size: 1.5rem;
margin: 0;
}
@ -75,3 +76,24 @@
font-size: 1.2rem;
line-height: 1;
}
@media (max-width: 768px) {
.experience-card{
display: flex;
flex-direction: column;
gap: 0;
}
.experience-card::before {
left: 20px;
top: 31px;
}
.experience-card-left, .experience-card-right{
width: fit-content;
margin-left: 20px;
}
.experience-card-left{
text-align: left;
}
}

View File

@ -123,3 +123,17 @@
font-weight: bold;
font-style: italic;
}
@media (max-width: 1366px) {
.single-project {
width: 47%;
}
}
@media (max-width: 768px) {
.single-project {
width: 90%;
}
}

View File

@ -22,7 +22,7 @@
.planet {
position: absolute;
bottom: 0%;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 120vw;
@ -102,3 +102,11 @@
opacity: 0.6;
}
}
@media (max-width: 840px) {
.planet {
display: none;
}
}

View File

@ -9,6 +9,7 @@
html{
scroll-behavior: smooth;
overflow-x: hidden;
}
@ -16,6 +17,7 @@ body {
margin: 0;
display: flex;
place-items: center;
overflow-x: hidden;
}
.section-title {