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

Add Problem, Solution, and Impact Sections to Project Pages #3767

Merged
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
24 changes: 24 additions & 0 deletions _layouts/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,30 @@ <h5 class='status-text'>{{ page.status }}</h5>
</div>
</div>

<!--Project Value Card-->
{% if page.problem %}
<div id='project-value-card' class='page-card card-primary page-card-lg page-card--project-description-page'>
<h2 class='project-page-card-title title6'>Value</h2>
<div class='project-page-value-description'>
<div class='sdg-grid-item'>
<p><strong>Problem</strong></p>
<p>{{ page.problem }}</p>
<p><strong>Solution</strong></p>
<p>{{ page.solution }}</p>
<p><strong>Impact</strong></p>
<p>{{ page.impact }}</p>
</div>
<div class='sdg-description-card'>
<h2 class='sdg-card-title title7'>Sustainable Development Goal</h2>
<div class='sdg-description-wrapper'>
<img class='sdg-img' src='{{ page.sdg-image-src }}'/>
<div class='sdg-description-grid-item'>{{ page.sdg }}</div>
</div>
</div>
</div>
</div>
{% endif %}

<!--Project Resources Card-->
<div class='page-card card-primary page-card-lg page-card--project-description-page'>
<h2 class='project-page-card-title title6'>Resources</h2>
Expand Down
98 changes: 98 additions & 0 deletions _sass/components/_project-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,104 @@
border-radius: 11px;
}

.project-page-value-description {
display: grid;
grid-template-columns: 55% auto;
grid-template-rows: auto;
column-gap: 6%;
padding: 0px 2%;

@media #{$bp-below-tablet} {
display: grid;
grid-template-columns: auto;
grid-template-rows: auto auto;
}
}

.sdg-card-title {
color: $color-white;

@media #{$bp-below-tablet}{
padding-bottom: 10px;
color: $color-black;
}
}

.sdg-grid-item {
padding: 0px 10px;
}

.sdg-description-wrapper {
@media #{$bp-below-tablet} {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
column-gap: 7%;
}
}

.sdg-description-card {
padding-top: 30px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin-right: auto;
background: #02548B;
text-align: center;
border-radius: 10px 10px 11px 11px;
height: fit-content;
MattPereira marked this conversation as resolved.
Show resolved Hide resolved

// NEW MOBILE FRIENDLY RULES
@media #{$bp-below-tablet} {
display: flex;
flex-direction: row;
flex-wrap: wrap;
text-align: start;
margin-left: -40px;
margin-right: -40px;
margin-bottom: -65px;
padding: 26px 33px 33px 50px;
background: #F7F5F5;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
}

.sdg-img-item {
text-align: center;
padding: 30px 60px 10px;
border-radius: 10px 10px 0px 0px;
background: #02548B;
}

.sdg-description-grid-item {
padding: 25px 19px;
background: #F6F6F6;
border-radius: 0px 0px 10px 10px;
height: 80%;

@media #{$bp-below-tablet} {
padding-top: 0px;
padding-left: 10px;
}
}

.sdg-img {
width: 145px;
height: 145px;
left: 72px;
top: 98px;

// NEW MOBILE FRIENDLY RULES
@media #{$bp-below-tablet} {
width: 90px;
height: 90px;
left: 32px;
top: 2138px;
border-radius: 10px;
}
}

.resource-list {
display: flex;
flex-wrap: wrap;
Expand Down