Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -119,21 +119,30 @@ body {
|
|
119 |
|
120 |
/* Contact section styles */
|
121 |
.contact {
|
122 |
-
|
123 |
-
|
|
|
124 |
}
|
125 |
|
126 |
-
.
|
127 |
-
|
128 |
-
|
129 |
-
|
|
|
|
|
|
|
130 |
}
|
131 |
|
132 |
.social-link {
|
133 |
-
|
134 |
-
|
|
|
|
|
|
|
|
|
135 |
}
|
136 |
|
|
|
137 |
/* Footer styles */
|
138 |
.footer {
|
139 |
background-color: #333;
|
|
|
119 |
|
120 |
/* Contact section styles */
|
121 |
.contact {
|
122 |
+
background-color: #f5f5f5; /* Add a light background color */
|
123 |
+
padding-top: 100px; /* Adjust padding as needed */
|
124 |
+
padding-bottom: 50px; /* Adjust padding as needed */
|
125 |
}
|
126 |
|
127 |
+
.form-control {
|
128 |
+
border-radius: 5px; /* Add rounded corners to form fields */
|
129 |
+
}
|
130 |
+
|
131 |
+
.btn-primary {
|
132 |
+
background-color: #333; /* Change button color */
|
133 |
+
border-color: #333; /* Change button border color */
|
134 |
}
|
135 |
|
136 |
.social-link {
|
137 |
+
font-size: 24px; /* Increase social media icon size */
|
138 |
+
transition: transform 0.3s ease-in-out; /* Add hover effect transition */
|
139 |
+
}
|
140 |
+
|
141 |
+
.social-link:hover {
|
142 |
+
transform: scale(1.1); /* Zoom on hover effect */
|
143 |
}
|
144 |
|
145 |
+
|
146 |
/* Footer styles */
|
147 |
.footer {
|
148 |
background-color: #333;
|