-
Notifications
You must be signed in to change notification settings - Fork 3
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
Br meettheprogramcoordinator #31
base: beta
Are you sure you want to change the base?
Changes from all commits
6e8186f
94e1c7c
99b528c
7c61ba1
ebee928
ab49bc9
3d6b7ce
799f9df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
* { | ||
box-sizing: border-box; | ||
font-family: 'Open Sans', sans-serif; | ||
} | ||
|
||
.box-content { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. update to be name spaced. ie. brroots-box-content |
||
margin: 0; | ||
padding: 0; | ||
background-color: #fff; | ||
color: #272b34; | ||
} | ||
.box-content { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Combine these rules |
||
margin-top: 250px; | ||
display: block; | ||
margin-bottom: 250px; | ||
background-color: inherit; | ||
} | ||
.br-left > h1 { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a class on that h1 instead of this selector |
||
text-align: center; | ||
text-transform: uppercase; | ||
DamienVesper marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
button { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add a class to the |
||
background-color: #9e1f63; | ||
border-radius: .5rem; | ||
border-width: 0; | ||
color: #fff; | ||
cursor: pointer; | ||
font-size: 1.1rem; | ||
padding: .5rem 1.5rem; | ||
text-decoration: none; | ||
} | ||
|
||
.youth-managed-farm__button:not(:last-of-type) { | ||
margin-right: 12px; | ||
} | ||
.br-right { | ||
margin-top: 25px; | ||
} | ||
img { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This rule is too general. We'll need to use a classname on that image and reference here. |
||
margin-left: 25%; | ||
margin-right: 25%; | ||
}/* | ||
.br-right, img { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Delete commented rules |
||
width: 100%; | ||
}*/ | ||
@media only screen and (min-width: 850px) { | ||
.box-content { | ||
display: flex; | ||
} | ||
.flex-placeholder { | ||
flex: 1; | ||
} | ||
.br-left { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update indentation |
||
margin-left: 100px; | ||
} | ||
.br-left img { | ||
margin-top: 27.5px; | ||
} | ||
.br-right { | ||
margin-right: 100px; | ||
padding-left: 15px; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class = "box-content"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. update classname to be namespaced to reduce possible conflicts with the whole |
||
<div class = "br-left"> | ||
<h1>Meet the Program Coordinator</h1> | ||
<p>Mitchell Provensal has been involved in various urban agriculture projects around Baton Rouge beginning in 2013. As an AmeriCorps service member and working under the Mayor's Healthy City Initiative, he managed and coordinated a summer youth employment program over four years. This initiative helped build and maintain over 10 community and school gardens. While working towards his Masters in urban Forestry from Southern University, Mitchell also worked as the Market Intern for BREADA, the local farmer's market. After completing his Masters in 2018, he started a small urban flower farm. Mitchell envisions employing his passion for growing food sustainable in ignite an urban agriculture movement in East Baton Rouge Parish.</p> | ||
<div class = "btn-area"> | ||
<button class = "btn">Email Mitchell >></button> | ||
</div> | ||
</div> | ||
<div class = "br-right"> | ||
<img src = "http://thewallsproject.org/img/futures_fund/coding_level_2.jpg" alt = "A student working in " /> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this rule set