dev #32
@ -7,7 +7,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.experiences-container {
|
.experiences-container {
|
||||||
width: 50%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -23,3 +23,15 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: rgba(176, 176, 176, 0.2);
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -125,3 +125,10 @@
|
|||||||
color: var(--important-color);
|
color: var(--important-color);
|
||||||
border-color: var(--important-color);
|
border-color: var(--important-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.filter-btn {
|
||||||
|
top: 5em;
|
||||||
|
right: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -12,6 +12,8 @@
|
|||||||
|
|
||||||
#home-section h1{
|
#home-section h1{
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
margin-left: 40px;
|
||||||
|
margin-right: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#home-section h2 {
|
#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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -41,3 +41,10 @@
|
|||||||
background-color: rgba(217, 95, 70, 0.3);
|
background-color: rgba(217, 95, 70, 0.3);
|
||||||
color: var(--important-color);
|
color: var(--important-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.nav-list{
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -18,7 +18,7 @@
|
|||||||
background-image: url("/public/assets/images/projectDetailsHeadband.png");
|
background-image: url("/public/assets/images/projectDetailsHeadband.png");
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|
||||||
&::after { /* Utilise un pseudo-élément pour le dégradé */
|
&::after {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
@ -80,6 +80,7 @@
|
|||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -170,3 +171,12 @@ aside ul li a:hover {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.return-button{
|
||||||
|
top: 7em;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -56,3 +56,7 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 3rem;
|
margin-bottom: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,6 +4,8 @@
|
|||||||
margin-bottom: 3rem;
|
margin-bottom: 3rem;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
gap: 6rem;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.experience-card::before {
|
.experience-card::before {
|
||||||
@ -21,18 +23,17 @@
|
|||||||
|
|
||||||
|
|
||||||
.experience-card-left {
|
.experience-card-left {
|
||||||
width: 50%;
|
width: 25%;
|
||||||
text-align: end;
|
text-align: end;
|
||||||
margin-right: 8rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.experience-card-right {
|
.experience-card-right {
|
||||||
width: 50%;
|
width: 25%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.experience-company {
|
.experience-company {
|
||||||
color: var(--important-color);
|
color: var(--important-color);
|
||||||
font-size: 1.2rem;
|
font-size: 1.5rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,3 +76,24 @@
|
|||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
line-height: 1;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -123,3 +123,17 @@
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 1366px) {
|
||||||
|
.single-project {
|
||||||
|
width: 47%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.single-project {
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
.planet {
|
.planet {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0%;
|
bottom: 0;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
width: 120vw;
|
width: 120vw;
|
||||||
@ -102,3 +102,11 @@
|
|||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 840px) {
|
||||||
|
.planet {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
html{
|
html{
|
||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -16,6 +17,7 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
place-items: center;
|
place-items: center;
|
||||||
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-title {
|
.section-title {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user