Commit bb4bcb41 authored by Traboulsi's avatar Traboulsi
Browse files

Update public/index.html

parent 70169d43
Pipeline #11150 passed with stage
in 8 seconds
...@@ -26,6 +26,75 @@ ...@@ -26,6 +26,75 @@
<!-- Template Main CSS File --> <!-- Template Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet"> <link href="assets/css/main.css" rel="stylesheet">
<!-- link to style.css : added by Salam -->
<style>
body {
background: #f5f5f5;
font-family: Arial, sans-serif;
padding: 40px;
}
.portfolio-container {
display: flex;
gap: 30px;
flex-wrap: wrap;
justify-content: center;
}
.portfolio-content {
width: 300px;
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
transition: all 0.3s ease-in-out;
display: flex;
flex-direction: column;
}
.portfolio-content:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.portfolio-content img {
width: 100%;
height: auto;
object-fit: cover;
border-bottom: 1px solid #eee;
}
.portfolio-info {
padding: 20px;
text-align: left;
}
.portfolio-info h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 5px;
}
.portfolio-info p {
font-size: 0.95rem;
color: #666;
margin-bottom: 10px;
}
.portfolio-info a {
margin-right: 12px;
color: #007bff;
text-decoration: none;
}
.portfolio-info a:hover {
color: #0056b3;
}
.portfolio-info i {
font-size: 1.3rem;
}
</style>
<!-- ======================================================= <!-- =======================================================
......
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