Commit 2bd64d2d authored by Traboulsi's avatar Traboulsi
Browse files

Update public/index.html

parent bb4bcb41
Pipeline #11151 passed with stage
in 8 seconds
...@@ -28,74 +28,62 @@ ...@@ -28,74 +28,62 @@
<link href="assets/css/main.css" rel="stylesheet"> <link href="assets/css/main.css" rel="stylesheet">
<!-- link to style.css : added by Salam --> <!-- link to style.css : added by Salam -->
<style> <style>
body { .portfolio-content {
background: #f5f5f5; background: #fff;
font-family: Arial, sans-serif; border-radius: 20px;
padding: 40px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
} padding: 0;
overflow: hidden;
.portfolio-container { display: flex;
display: flex; flex-direction: column;
gap: 30px; transition: all 0.3s ease-in-out;
flex-wrap: wrap; }
justify-content: center;
} .portfolio-content:hover {
transform: translateY(-5px);
.portfolio-content { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
width: 300px; }
background: #fff;
border-radius: 20px; .portfolio-content img {
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); width: 100%;
overflow: hidden; max-height: 180px; /* Bildhöhe begrenzen */
transition: all 0.3s ease-in-out; object-fit: contain; /* Inhalt einpassen, nicht beschneiden */
display: flex; padding: 10px;
flex-direction: column; background: #f9f9f9;
} border-bottom: 1px solid #eee;
}
.portfolio-content:hover {
transform: translateY(-5px); .portfolio-info {
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12); padding: 15px 20px;
} text-align: left;
}
.portfolio-content img {
width: 100%; .portfolio-info h4 {
height: auto; font-size: 1.1rem;
object-fit: cover; font-weight: 600;
border-bottom: 1px solid #eee; margin-bottom: 5px;
} }
.portfolio-info { .portfolio-info p {
padding: 20px; font-size: 0.95rem;
text-align: left; color: #666;
} margin-bottom: 10px;
}
.portfolio-info h4 {
font-size: 1.1rem; .portfolio-info a {
font-weight: 600; margin-right: 12px;
margin-bottom: 5px; color: #007bff;
} text-decoration: none;
}
.portfolio-info p {
font-size: 0.95rem; .portfolio-info a:hover {
color: #666; color: #0056b3;
margin-bottom: 10px; }
}
.portfolio-info i {
.portfolio-info a { font-size: 1.3rem;
margin-right: 12px; }
color: #007bff; </style>
text-decoration: none;
}
.portfolio-info a:hover {
color: #0056b3;
}
.portfolio-info i {
font-size: 1.3rem;
}
</style>
<!-- ======================================================= <!-- =======================================================
* Template Name: FlexStart * Template Name: FlexStart
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment