Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -94,14 +94,24 @@ body {
|
|
94 |
|
95 |
|
96 |
/* Portfolio section styles */
|
97 |
-
.portfolio {
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
99 |
}
|
100 |
|
101 |
-
.
|
102 |
-
|
103 |
}
|
104 |
|
|
|
|
|
|
|
|
|
|
|
105 |
.card-img-top {
|
106 |
height: 250px;
|
107 |
object-fit: cover;
|
|
|
94 |
|
95 |
|
96 |
/* Portfolio section styles */
|
97 |
+
.portfolio-grid {
|
98 |
+
margin-top: 50px; /* Adjust margin as needed */
|
99 |
+
}
|
100 |
+
|
101 |
+
.card {
|
102 |
+
border: none; /* Remove default card border */
|
103 |
+
transition: transform 0.3s ease-in-out; /* Add hover effect transition */
|
104 |
}
|
105 |
|
106 |
+
.card:hover {
|
107 |
+
transform: scale(1.02); /* Zoom on hover effect */
|
108 |
}
|
109 |
|
110 |
+
.card-body {
|
111 |
+
padding: 20px; /* Adjust padding as needed */
|
112 |
+
}
|
113 |
+
|
114 |
+
|
115 |
.card-img-top {
|
116 |
height: 250px;
|
117 |
object-fit: cover;
|