JAYASWAROOP commited on
Commit
e54eb3a
·
verified ·
1 Parent(s): 1904640

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +17 -8
style.css CHANGED
@@ -119,21 +119,30 @@ body {
119
 
120
  /* Contact section styles */
121
  .contact {
122
- padding-top: 50px;
123
- text-align: center;
 
124
  }
125
 
126
- .social-media {
127
- display: flex;
128
- justify-content: center;
129
- gap: 10px;
 
 
 
130
  }
131
 
132
  .social-link {
133
- font-size: 20px;
134
- color: #333;
 
 
 
 
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;