-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
Careers, Products views added
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from 'react'; | ||
import './style.footer.css'; | ||
|
||
export default function Footer() { | ||
return ( | ||
<div className="footer"> | ||
{/* <div className="logo-wrapper"> | ||
<h1 className="demo-logo-icon">DS</h1> | ||
<p className="logo-title">The DesignSystems</p> | ||
</div> | ||
<div className="footer-col-1"> | ||
<div className="useful-links-section"> | ||
<p className="useful-links-title links-title">Useful links</p> | ||
<ul className="useful-links-list"> | ||
<li className="useful-link-item"></li> | ||
</ul> | ||
</div> | ||
</div> */} | ||
</div> | ||
) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* No CSS *//*# sourceMappingURL=style.footer.css.map */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
div.footer { | ||
// border-top: 1.2px solid #ffffff33; | ||
// margin-top: 6em; | ||
// padding-top: 6em; | ||
// display: grid; | ||
// grid-template-columns: auto auto auto; | ||
// > div.logo-wrapper { | ||
// display: flex; | ||
// align-items: center; | ||
// gap: 14px; | ||
// > p.logo-title { | ||
// font-weight: 500; | ||
// } | ||
// } | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ button.button { | |
&:hover { | ||
cursor: pointer; | ||
} | ||
&:focus { | ||
outline: none; | ||
} | ||
} | ||
|
||
button.button { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from 'react'; | ||
import Button from '../../Button'; | ||
import './style.widgets.cards.career-opening-card.css'; | ||
|
||
export default function CareerOpeningCard(__CareerOpeningCardDetails) { | ||
return ( | ||
<div className="career-opening-card"> | ||
<h3 className="career-role-title">{__CareerOpeningCardDetails.RoleTitle}</h3> | ||
<p className="career-role-description">{__CareerOpeningCardDetails.RoleDescription}</p> | ||
<Button type="primary" value="Apply for this role" onClick={() => window.open(__CareerOpeningCardDetails.RegistrationFormURL)} /> | ||
</div> | ||
) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
div.career-opening-card { | ||
width: 360px; | ||
margin: auto; | ||
padding: 2.4em 1.2em; | ||
background-color: #ffffff; | ||
border-radius: 6px; | ||
color: black; | ||
transition: 0.2s ease-in-out; | ||
&:hover { | ||
cursor: pointer; | ||
background-color: #fefefe; | ||
transform: translateY(-2px); | ||
} | ||
> p.career-role-description { | ||
max-width: 40ch; | ||
margin-top: 0.6em; | ||
margin-bottom: 1.4em; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import Button from '../../Button'; | ||
import './style.widgets.cards.product-card.css'; | ||
|
||
export default function ProductCard(__ProductCardProperties) { | ||
return ( | ||
<div className="product-card"> | ||
<div className="product-details-wrapper"> | ||
<h4 className="product-name">{__ProductCardProperties.ProductName}</h4> | ||
<p className="product-description">{__ProductCardProperties.ProductDescription}</p> | ||
</div> | ||
<div className="product-cta-button-wrapper"> | ||
<a href={__ProductCardProperties.GitHubURL} className="check-github-url"><i className="fab fa-github"></i> Check GitHub</a> | ||
<Button type="primary" value="Get Started" onClick={() => window.open(__ProductCardProperties.GetStartedURL)} /> | ||
</div> | ||
</div> | ||
) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
div.product-card { | ||
width: 90%; | ||
border-radius: 8px; | ||
margin-right: auto; | ||
margin-left: auto; | ||
padding: 2.4em; | ||
display: grid; | ||
grid-template-columns: auto auto; | ||
align-items: center; | ||
justify-content: space-between; | ||
color: black; | ||
background-color: white; | ||
border: 1.2px solid #f2f2f2; | ||
box-shadow: 0 8px 32px 0 rgba(31, 135, 95, 0.250); | ||
cursor: pointer; | ||
transition: 0.2s ease-in-out; | ||
&:hover { | ||
transform: translateY(-4px); | ||
box-shadow: 0px 4px 12px 0 rgba(31, 135, 95, 0.500); | ||
} | ||
> div.product-details-wrapper { | ||
width: 80%; | ||
> p.product-description { | ||
max-width: 70ch; | ||
} | ||
} | ||
> div.product-cta-button-wrapper { | ||
display: flex; | ||
align-items: center; | ||
gap: 36px; | ||
> a.check-github-url { | ||
color: black; | ||
font-weight: 600; | ||
} | ||
} | ||
} |
a71edd9
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.
Successfully deployed to the following URLs: