styling for about section

This commit is contained in:
2026-05-04 15:20:04 -04:00
parent 56b939eb02
commit 758ce3eda1
2 changed files with 87 additions and 50 deletions
+16 -15
View File
@@ -255,7 +255,7 @@
<div class="col col-12 col-md-6 lqd-unit-animation-done" style="">
<div class="module-content relative flex flex-col items-start pr-5percent pl-15percent lg:pr-0">
<p class="ld-fh-element mb-0/5em text-12 uppercase tracking-0/05em text-black">Who am I?</p>
<h2 class="ld-fh-element mb-0/4em text-65 leading-0/8em text-black text-init">Tokunbo Strategy</h2>
<h2 class="ld-fh-element mb-0/4em text-65 leading-0/8em text-black text-init">Tokunbo Lawal Tokslaw</h2>
<p class="ld-fh-element mb-2em text-16 leading-1/6em text-black">I'm an Enterprise Architect and Developer based in Atlanta, USA. I build immersive infrastructure, microservice applications and architecture through carefully crafted code and user-centric solutions</p>
<div class="w-full relative">
<div class="flex flex-wrap -mx-15 mb-50 md:mb-0">
@@ -314,24 +314,25 @@
<section id="about1" class="active">
<div class="container page-title ">
<h5 class=" ld-fh-element mb-0/5em relative text-40 "><span>Experience</span></h5>
<?php if (! empty($content)) { ?>
<div class="experience-container">
<div class="container page-title">
<h5 class="ld-fh-element mb-0/5em relative text-40"><span>Experience</span></h5>
<?php if (!empty($content)) { ?>
<div class="experience-cards">
<?php foreach($content as $item) { ?>
<div class="experience-item">
<ul>
<li class="title"><?php echo htmlspecialchars($item['title']); ?></li>
<li class="title"><?php echo htmlspecialchars($item['company']);?></li>
<li class="title"><?php echo htmlspecialchars($item['duration']); ?></li>
<li class="title"><?php echo nl2br(htmlspecialchars($item['description'])); ?></li>
</ul>
<div class="exp-card">
<div class="exp-header">
<div class="exp-title-group">
<h4 class="exp-role"><?php echo htmlspecialchars($item['title']); ?></h4>
<span class="exp-company"><?php echo htmlspecialchars($item['company']); ?></span>
</div>
<span class="exp-duration"><?php echo htmlspecialchars($item['duration']); ?></span>
</div>
<hr class="exp-divider">
<p class="exp-description"><?php echo nl2br(htmlspecialchars($item['description'])); ?></p>
</div>
<?php
} ?>
<?php } ?>
</div>
<?php } ?>
</div>
</section>