Skip to content

Commit ccc5c81

Browse files
committed
feat: Improved Specialties Section With Font Awesome Icons(#32)
1 parent 277676b commit ccc5c81

File tree

2 files changed

+35
-12
lines changed

2 files changed

+35
-12
lines changed

public/index.html

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,21 @@ <h3>About Pandas Who Code</h3>
5757
Welcome to PandasWhoCode, a software development organization focused on open-source projects, and cutting-edge technology. We specialize in:
5858
</p>
5959
<ul class="specialties">
60-
<li><strong>💻 Open Source Contributions</strong>
61-
<ul>
62-
<li>Tools, libraries, and frameworks for modern software development.</li>
63-
</ul>
64-
</li>
65-
<li><strong>⚡ DevOps & CI/CD Solutions</strong>
66-
<ul>
67-
<li>Automation, workflows, and best practices for seamless development pipelines.</li>
68-
</ul>
69-
</li>
70-
</ul>
60+
<li>
61+
<i class="fas fa-laptop-code icon-laptop"></i>
62+
<strong>Open Source Contributions</strong>
63+
<ul>
64+
<li>Tools, libraries, and frameworks for modern software development.</li>
65+
</ul>
66+
</li>
67+
<li>
68+
<i class="fas fa-bolt icon-bolt"></i>
69+
<strong>DevOps & CI/CD Solutions</strong>
70+
<ul>
71+
<li>Automation, workflows, and best practices for seamless development pipelines.</li>
72+
</ul>
73+
</li>
74+
</ul>
7175

7276
<h3 class="profile-section-header">Roger Barker</h3>
7377
<a href="https://www.linkedin.com/in/roger-barker/" target="_blank" rel="noopener noreferrer" class="profile-image-link">

public/styles/index.css

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,31 @@ h3 {
4343
opacity: 0.9;
4444
}
4545

46-
.specialties, .specialties ul {
46+
/* Specialty list styles */
47+
.specialties,
48+
.specialties ul {
4749
list-style: none;
4850
padding-left: 0;
4951
margin-bottom: 2rem;
5052
}
5153

54+
/* Icon styling */
55+
.specialties i {
56+
margin-right: 6px;
57+
font-size: 1.1rem;
58+
vertical-align: middle;
59+
}
60+
61+
/* Individual icon colors */
62+
.icon-laptop {
63+
color: rgb(159, 228, 255);
64+
}
65+
66+
.icon-bolt {
67+
color: rgb(201, 11, 201);
68+
}
69+
70+
5271
.project-item {
5372
background: rgba(255, 255, 255, 0.1);
5473
border-radius: 15px;

0 commit comments

Comments
 (0)