Skip to content

Commit 05620f4

Browse files
committed
update Page UI and spaces
1 parent 2508777 commit 05620f4

2 files changed

Lines changed: 58 additions & 25 deletions

File tree

css/style.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,3 +138,41 @@ p.ellipsis-separator + p {
138138
padding-right: 5px;
139139
}
140140
}
141+
142+
.my-profile .row .col-lg-8 .card {
143+
min-height: 450px;
144+
display: flex;
145+
flex-direction: column;
146+
}
147+
148+
.my-profile .row .col-lg-8 .card .card-header {
149+
flex-grow: 1;
150+
display: flex;
151+
flex-direction: column;
152+
}
153+
154+
.tech-stack {
155+
margin-top: auto;
156+
margin-bottom: auto;
157+
text-align: center;
158+
}
159+
160+
.tech-grid {
161+
display: grid;
162+
grid-template-columns: repeat(3, 1fr);
163+
gap: 10px;
164+
max-width: 500px;
165+
margin: 0 auto 20px auto;
166+
}
167+
168+
.tech-item {
169+
background: #e0e0e0;
170+
padding: 5px 8px;
171+
border-radius: 15px;
172+
font-size: 13px;
173+
font-weight: 500;
174+
margin: 2px;
175+
white-space: nowrap;
176+
overflow: hidden;
177+
text-overflow: ellipsis;
178+
}

index.html

Lines changed: 20 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ <h3>jfullstackdev</h3>
5151
<div class="col-lg-8">
5252
<div class="card shadow-sm">
5353
<div class="card-header bg-transparent border-0">
54-
<h3 class="mb-0"><i class="far fa-clone pr-1"></i>About Me</h3>
5554
<div class="social-icons" style="text-align: center; margin: 10px 0;">
5655
<a
5756
href="https://github.com/jfullstackdev"
@@ -76,30 +75,26 @@ <h3 class="mb-0"><i class="far fa-clone pr-1"></i>About Me</h3>
7675
Senior Full Stack Developer, GitHub Contributor, Google &
7776
VEX Robotics Certified Educator, ICT & Robotics Instructor
7877
</p>
79-
<p class="ellipsis-separator" style="text-align: center;"> ... </p>
80-
<p>
81-
I'm documenting the things I'm interested in, lessons that I'm
82-
learning and topics that I'm teaching. And I want to share these
83-
things with you. So, please hit the star button or fork any repo that
84-
you think is helpful / informative / worth it. It
85-
means a lot to me. Thanks.
86-
</p>
87-
<p class="ellipsis-separator" style="text-align: center;"> ... </p>
88-
<p>
89-
I'm now a freelancer so you can hire me:
90-
</p>
91-
<ol style="margin: 5px 0; padding-left: 25px;">
92-
<li>Web Dev ( Java, Spring Boot, PHP, Laravel )</li>
93-
<li>online tutorial ( programming, Arduino & Robotics )</li>
94-
<li>writing tech lessons, topics or Course Syllabus</li>
95-
<li>Technical Writing</li>
96-
</ol>
97-
<p>
98-
just DM me for the details at <a
99-
href="https://twitter.com/jfullstackdev"
100-
style="color: #000;">Twitter (X)
101-
</a>
102-
</p>
78+
79+
<div class="tech-stack">
80+
<div class="tech-grid">
81+
<span class="tech-item">Java</span>
82+
<span class="tech-item">Spring Boot</span>
83+
<span class="tech-item">PHP</span>
84+
<span class="tech-item">Laravel</span>
85+
<span class="tech-item">HTML/CSS</span>
86+
<span class="tech-item">JavaScript</span>
87+
<span class="tech-item">Node.js</span>
88+
<span class="tech-item">React</span>
89+
<span class="tech-item">Git</span>
90+
<span class="tech-item">GitHub</span>
91+
<span class="tech-item">Robotics</span>
92+
<span class="tech-item">Arduino</span>
93+
<span class="tech-item">Web Dev</span>
94+
<span class="tech-item">Tutorials</span>
95+
<span class="tech-item">Tech Writing</span>
96+
</div>
97+
</div>
10398
</div>
10499
</div>
105100
</div>

0 commit comments

Comments
 (0)