Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update About Section to Match Figma Design #1444

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion new-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,10 @@ <h1 class="mb-20 text-xl font-bold text-center sm:text-2xl md:text-6xl lg:text-8
<!-- <a href="#about"> -->
<div id="center" href="#about" >
<div class="about-section" id="about">
<h2><img src="/img3.png" id="imgl"> About</h2>
<div class="about-container">
<i class="fas fa-link link-icon"></i>
<h1 class="title dark:text-white" id="about">About</h1>
</div>
<p>
<strong>ResourceHub</strong> is an open-source project I created on September 14, 2023, with the goal of compiling helpful resources for web development initially. My aim was to provide developers with valuable resources they could use to enhance their workflow or in their journey as a developer.
</p>
Expand Down
22 changes: 22 additions & 0 deletions new-website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1165,6 +1165,28 @@ body{

/* Add these styles to the end of your existing style.css file */

.about-section {
background-color: white;
padding: 40px;
width: 90%;
max-width: 1000px;
border: none !important;
box-shadow: none !important;
}

.about-container {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.about-section p {
font-size: 1em !important;
line-height: 1.5 !important;
margin-bottom: 20px;
color: #333;
}

.container {
display: flex;
justify-content: space-between;
Expand Down
Loading