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

Improved Visual Cohesion on About Us Page #113

Closed
wants to merge 10 commits into from
31 changes: 21 additions & 10 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@
/>
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="stylesheet" href="./assets/css/responsiveness.css" />

<style>
#footer {
display: none;
}
</style>

<style>
#footer {
display: none;
}
</style>
</head>

<body>
Expand Down Expand Up @@ -66,7 +65,9 @@
<!-- -->
<div class="body">
<div class="container text">
<div class="row gy-3 gy-md-4 gy-lg-0 align-items-lg-center">
<div
class="row gy-3 gy-md-4 gy-lg-0 align-items-lg-center about-container"
>
<div class="col-12 col-lg-6 col-xl-5">
<img
class="img-fluid rounded"
Expand All @@ -80,13 +81,23 @@
<div class="col-12 col-xl-11">
<h2 class="mb-3">Who Are We?</h2>
<p class="lead fs-5 text-secondary mb-3">
Tree2Hope is a purpose-driven initiative committed to fostering global reforestation efforts and championing environmental stewardship. Our platform enables eco-conscious individuals and businesses to actively participate in the restoration of our planet's green spaces.
Tree2Hope is a purpose-driven initiative committed to
fostering global reforestation efforts and championing
environmental stewardship. Our platform enables
eco-conscious individuals and businesses to actively
participate in the restoration of our planet's green spaces.
</p>
<p class="fs-5 mb-5">
For the low, low price of one dollar, you can choose a specific area in need of ecological attention and help fund the planting of a tree there, having an immediate and tangible effect on the world around you.
For the low, low price of one dollar, you can choose a
specific area in need of ecological attention and help fund
the planting of a tree there, having an immediate and
tangible effect on the world around you.
</p>
<p class="lead fs-5 text-secondary mb-3">
Join us in our mission to create a sustainable and flourishing ecosystem that supports biodiversity and mitigates the effects of climate change for a brighter, greener future.
Join us in our mission to create a sustainable and
flourishing ecosystem that supports biodiversity and
mitigates the effects of climate change for a brighter,
greener future.
</p>
<!-- <div class="row gy-4 gy-md-0 gx-xxl-5X">
<div class="col-12 col-md-6">
Expand Down
18 changes: 18 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -864,4 +864,22 @@ nav .nav_buttons {
font-weight: 700;
}

.about-container {
/* Radial gradient background */
background: radial-gradient(
circle at top left,
/* Fully transparent at top-left corner */ rgba(245, 245, 220, 0) 0%,
/* Slight transparency moving away */ rgba(245, 245, 220, 0.2) 15%,
/* Fully opaque */ rgba(245, 245, 220, 1) 30%
);

/* Blur effect */
backdrop-filter: blur(15px);
}

/* Ensure the background is visible through child elements */
.about-container div {
background-color: transparent;
}

/* You can further style the .content-box class as needed */