-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit bcf0683
Showing
215 changed files
with
29,858 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,332 @@ | ||
:root { | ||
--font-family--heading: 'Hind Siliguri', sans-serif; | ||
--font-family--content: 'Montserrat', sans-serif; | ||
--font-weight--light: 300; | ||
--font-weight--semibold: 600; | ||
--font-weight--medium: 500; | ||
--color--white: #FFFFFF; | ||
--color--dark-grey: #2A2A2A; | ||
--color--orange: #F26430; | ||
--color--green: #77BA99; | ||
--color--blue: #004DB9; | ||
--color--grey: #626262; | ||
--font-size--content: calc(1em * 0.75); | ||
} | ||
|
||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-size: 1em; | ||
font-family: var(--font-family--content); | ||
} | ||
|
||
/* Font-sizing */ | ||
h1 { font-size: 86px; } | ||
h2 { font-size: 36px; } | ||
h3 { font-size: 1.5em; } | ||
h4 { font-size: 28px; } | ||
h5 { font-size: 24px; } | ||
h6 { font-size: 22px; } | ||
p { font-size: 18px; } | ||
|
||
/* End Font-sizing */ | ||
|
||
/* Line Height */ | ||
h1 { line-height: 100px; } | ||
h2 { line-height: 46px; } | ||
.this-week h2 { line-height: 68px;} | ||
h3 { line-height: 1.25;} | ||
/* End Line Height */ | ||
|
||
/* Font-families */ | ||
h1, h2, h3, h4, h5, h6, nav { | ||
font-family: var(--font-family--heading); | ||
margin: 0 0 10px 0; padding: 0; | ||
} | ||
p { font-family: var(--font-family--content); } | ||
/* End Font-families */ | ||
|
||
/* Margin */ | ||
h1 { margin-bottom: 42px; } | ||
h2 { margin-bottom: 42px; } | ||
.convo h2 { margin-bottom: 0; } | ||
/* End Margin */ | ||
|
||
/* Font-weights */ | ||
h1, h2, h4 { | ||
font-weight: var(--font-weight--light); | ||
} | ||
h3,h5 { font-weight: var(--font-weight--semibold); } | ||
h6 { font-weight: var(--font-weight--medium); } | ||
/* End Font-weights */ | ||
|
||
/* Text-Transform */ | ||
h1, h2, h4, h6 { text-transform: uppercase; } | ||
|
||
|
||
/* Element Styling */ | ||
h2 { vertical-align: middle;} | ||
p { | ||
font-size: 18px; | ||
line-height: 24px; | ||
margin: 0 0 30px 0; | ||
} | ||
a { color: #004DB9; } | ||
img { max-width: 100%; } | ||
body > header { | ||
background: var(--color--dark-grey); | ||
display: flex; | ||
flex-direction: row; | ||
height: 160px; | ||
align-items: center; | ||
border-bottom: 40px solid var(--color--green); | ||
padding: 0 140px; | ||
margin-bottom: 60px; | ||
} | ||
body.this-week > header { border-bottom: 0; margin-bottom: 0;} | ||
|
||
header a.site-home { | ||
color: var(--color--white); | ||
text-decoration: none; | ||
font-weight: var(--font-weight--light); | ||
font-family: var(--font-family--heading); | ||
flex: 0 0 200px; | ||
} | ||
header a.site-home strong { font-weight: var(--font-weight--semibold);} | ||
|
||
body > header > nav { | ||
flex: 1 1 auto; | ||
list-style: none; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: flex-end; | ||
} | ||
body > header > nav a { | ||
flex: 1 1 1fr; margin-right: 1em; | ||
color: var(--color--green); | ||
text-transform: uppercase; | ||
text-decoration: none; | ||
font-size: 32px; | ||
font-weight: var(--font-weight--semibold); | ||
} | ||
body > header > nav a:last-child { | ||
margin-right: 0; | ||
} | ||
body > header > nav a.active { | ||
color: var(--color--white); | ||
border-bottom: 8px solid var(--color--orange); | ||
margin-bottom: -8px; | ||
} | ||
body > header > nav a .icon { | ||
font-size: 24px; | ||
vertical-align: top; | ||
} | ||
|
||
main { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: stretch; | ||
} | ||
.site-home { font-size: 65px; } | ||
.site-home span { font-size: 70px; } | ||
.this-week { flex: 0 0 58%; --convo-bg-color: var(--color--orange); } | ||
.blog-feed, .twitter-feed { flex: 0 0 42%; --convo-bg-color: var(--color--green); } | ||
.convo { | ||
background-color: var(--convo-bg-color); | ||
position: relative; | ||
height: 180px; | ||
color: white; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
margin-bottom: 190px; | ||
} | ||
.convo p { margin: 0; } | ||
.convo::after { | ||
content: ''; | ||
display: block; | ||
background-color: var(--convo-bg-color); | ||
height: 0; | ||
width: 0; | ||
position: absolute; | ||
top: 100%; | ||
left: 140px; | ||
border-width: 70px; | ||
border-style: solid; | ||
background: transparent; | ||
border-right-color: transparent; | ||
border-bottom-color: transparent; | ||
border-left-color: var(--convo-bg-color); | ||
border-top-color: var(--convo-bg-color); | ||
} | ||
main article { | ||
position: relative; | ||
} | ||
main article > * { | ||
padding-left: 140px; | ||
padding-right: 140px; | ||
} | ||
.this-week main article:first-child > * { padding-right: 30px; } | ||
|
||
.this-week .author { | ||
margin-bottom: 50px; | ||
margin-top: -100px; | ||
margin-left: 140px; | ||
} | ||
.author { | ||
margin-bottom: 20px; | ||
display:flex; | ||
flex-direction: row; | ||
align-items: center; | ||
font-size: 18px; | ||
} | ||
.author pfe-avatar { | ||
--pfe-avatar--width: 50px; | ||
display: inline-block; | ||
margin-right:20px; | ||
} | ||
p.byline { | ||
margin: 0; | ||
padding: 0; | ||
color: #454545; | ||
font-size: 16px; | ||
} | ||
p.end-of-results { | ||
text-align: center; | ||
font-size: 16px; | ||
} | ||
|
||
.preamble { | ||
font-size: 24px; | ||
line-height: 32px; | ||
vertical-align: middle; | ||
color: #454545; | ||
} | ||
|
||
.twitter-feed h3 { | ||
font-size: 16px; | ||
color: #454545; | ||
} | ||
.twitter-feed p a { | ||
font-size: 20px; | ||
font-weight: 600; | ||
} | ||
|
||
.blogs-page main, .twitter-page main { | ||
display: flex; | ||
} | ||
.blogs-page main article:first-child, .twitter-page main article:first-child { | ||
flex: 0 0 65%; | ||
padding-right: 30px; | ||
} | ||
|
||
.blogs-page hr { | ||
width: 50%; | ||
} | ||
.blogs-page h3 { | ||
margin-top: 30px; | ||
} | ||
|
||
.rhd-banner { | ||
background-color: var(--color--grey); | ||
color: var(--color--white); | ||
padding: 64px 140px; | ||
} | ||
.rhd-banner .three-cols { | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
.rhd-banner .three-cols p { | ||
flex: 2; | ||
} | ||
.rhd-banner .three-cols a { | ||
flex: 1; | ||
margin-left: 140px; | ||
color: var(--color--white); | ||
font-size: 22px; | ||
font-weight: bold; | ||
} | ||
|
||
@media (max-width: 1200px) { | ||
h2, .this-week h2 { | ||
font-size: 24px; | ||
line-height: 34px; | ||
} | ||
.rhd-banner .three-cols { | ||
flex-direction: column; | ||
} | ||
body > header, .rhd-banner { | ||
padding-left: 70px; | ||
padding-right: 70px; | ||
} | ||
body > header { | ||
height: 80px; | ||
} | ||
.rhd-banner { | ||
padding-top: 16px; | ||
padding-bottom: 16px; | ||
} | ||
.rhd-banner .three-cols a { | ||
margin-left: 0; | ||
margin-bottom: 30px; | ||
} | ||
.this-week main article:first-child > * { | ||
padding-right: 30px; | ||
} | ||
main article > * { | ||
padding-left: 70px; | ||
padding-right: 70px; | ||
} | ||
.convo { | ||
height: 120px; | ||
margin-bottom: 120px; | ||
} | ||
.convo::after { | ||
border-width: 35px; | ||
left: 70px; | ||
} | ||
} | ||
|
||
@media (max-width: 769px) { | ||
h2, .this-week h2 { | ||
font-size: 24px; | ||
line-height: 28px; | ||
margin-bottom: 1em; | ||
} | ||
body > header, .rhd-banner { | ||
padding-left: 30px; | ||
padding-right: 30px; | ||
} | ||
body > header { | ||
height: auto; | ||
} | ||
header a.site-home { | ||
flex: 0 0 auto; | ||
font-size: 32px; | ||
} | ||
body > header > nav a { | ||
font-size: 24px; | ||
} | ||
.this-week h2 { | ||
line-height: 34px; | ||
} | ||
main { | ||
flex-direction: column; | ||
} | ||
main article > * { | ||
padding-left: 30px; | ||
padding-right: 30px; | ||
} | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
body { | ||
color: white; | ||
background: black; | ||
} | ||
|
||
h3 { color: #bababa; } | ||
a { color: #6BB5FF; } | ||
} |
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 @@ | ||
{"name":"Alex Porcelli","job_title":"Sr. Principal Software Engineer","twitter":"porcelli"} |
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 @@ | ||
{"name":"Example Author","email":"[email protected]","emailhash":"123456487564321351531354153","job_title":"Example Job Title","twitter":"exampletwitter","bio":"Example really came from nothing. She took it upon herself to make something. Something is really quite remarkable."} |
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 @@ | ||
{"name":"Paul Robinson","job_title":"Software Engineering Manager"} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.