JAYASWAROOP commited on
Commit
4163f0a
·
verified ·
1 Parent(s): 899de2c

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +9 -3
style.css CHANGED
@@ -162,17 +162,18 @@ body {
162
  color: #fff;
163
  padding: 10px 15px;
164
  border-radius: 50%;
165
- background-color: #333;
166
  z-index: 2;
167
  position: absolute;
168
  left: 50%;
169
  transform: translateX(-50%);
170
  top: 0;
 
171
  }
172
 
173
  .timeline-content {
174
  padding: 20px;
175
- border: 1px solid #ddd;
176
  border-radius: 5px;
177
  background-color: #f5f5f5;
178
  position: relative;
@@ -180,6 +181,7 @@ body {
180
  transform: translateX(-50%);
181
  z-index: 1;
182
  margin-top: 20px;
 
183
  }
184
 
185
  .timeline-content h3 {
@@ -193,6 +195,7 @@ body {
193
  }
194
 
195
 
 
196
  .contact-details {
197
  padding-top: 50px;
198
  }
@@ -204,15 +207,18 @@ body {
204
 
205
  .list-unstyled li {
206
  margin-bottom: 10px;
 
 
207
  }
208
 
209
  .list-unstyled a {
210
  color: #333;
211
  text-decoration: none;
 
212
  }
213
 
214
  .list-unstyled i {
215
- color: #333;
216
  font-size: 18px;
217
  }
218
 
 
162
  color: #fff;
163
  padding: 10px 15px;
164
  border-radius: 50%;
165
+ background-color: #9b59b6; /* Unique color */
166
  z-index: 2;
167
  position: absolute;
168
  left: 50%;
169
  transform: translateX(-50%);
170
  top: 0;
171
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
172
  }
173
 
174
  .timeline-content {
175
  padding: 20px;
176
+ border: none; /* Removed border */
177
  border-radius: 5px;
178
  background-color: #f5f5f5;
179
  position: relative;
 
181
  transform: translateX(-50%);
182
  z-index: 1;
183
  margin-top: 20px;
184
+ border-left: 5px solid #9b59b6; /* Decorative border line */
185
  }
186
 
187
  .timeline-content h3 {
 
195
  }
196
 
197
 
198
+
199
  .contact-details {
200
  padding-top: 50px;
201
  }
 
207
 
208
  .list-unstyled li {
209
  margin-bottom: 10px;
210
+ display: flex;
211
+ align-items: center;
212
  }
213
 
214
  .list-unstyled a {
215
  color: #333;
216
  text-decoration: none;
217
+ margin-left: 10px; /* Adjust spacing between icon and text */
218
  }
219
 
220
  .list-unstyled i {
221
+ color: #9b59b6; /* Unique color */
222
  font-size: 18px;
223
  }
224