JAYASWAROOP commited on
Commit
dd8ac50
·
verified ·
1 Parent(s): 5179094

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +14 -4
style.css CHANGED
@@ -94,14 +94,24 @@ body {
94
 
95
 
96
  /* Portfolio section styles */
97
- .portfolio {
98
- padding-top: 50px;
 
 
 
 
 
99
  }
100
 
101
- .portfolio-item {
102
- margin-bottom: 20px;
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;