-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from codefordenver/dh-general-info
Dh general info
- Loading branch information
Showing
5 changed files
with
74 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from 'react'; | ||
import './GeneralInfo.scss'; | ||
|
||
const GeneralInfo = () => { | ||
return ( | ||
<section className="general-info-container"> | ||
<object className="primary-logo" data="./assets/Exit_Plan-Logo.svg" alt="primary exit plan logo" height="1000" width="1000"> | ||
</object> | ||
<div role="secondary container for general info" className="text-video-container"> | ||
<article className="left-container"> | ||
<h1>WHAT IS EXIT PLAN?</h1> | ||
<p className="lead-text"> | ||
Coming out in a hostile environment is hard. When a member of a family comes out as LBGT or a member of a religious cult decides they want to leave, they can en up feeling like they've lost everything -- their family, their friends, their support structures, and financial support. | ||
</p> | ||
<p className="secondary-text"> | ||
With chat articles and resources Exit Plan is here to help! | ||
</p> | ||
</article> | ||
<article className="right-container"> | ||
</article> | ||
</div> | ||
</section> | ||
); | ||
} | ||
|
||
export default GeneralInfo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
@import '../index.scss'; | ||
|
||
.primary-logo { | ||
padding: 8px; | ||
position: relative; | ||
left: 600px; | ||
} | ||
|
||
.text-video-container { | ||
display: flex; | ||
justify-content: space-between; | ||
margin: 0 40px; | ||
} | ||
|
||
h1 { | ||
font-family: Helvetica, sans-serif; | ||
font-size: 3rem; | ||
font-weight: 600; | ||
color: $dark-blue; | ||
} | ||
|
||
p { | ||
font-family: Helvetica, sans-serif; | ||
font-size: 1.5rem; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
color: $dark-blue; | ||
} | ||
|
||
.lead-text { | ||
margin-bottom: 20px; | ||
} | ||
|
||
.left-container { | ||
height: 300px; | ||
width: 500px; | ||
} | ||
.right-container { | ||
height: 350px; | ||
width: 600px; | ||
border: 3px solid $dark-blue; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters