1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

609 lines
8.9 KiB
SCSS

@import "fonts";
$col-white: #fff;
$col-bg: #0b1b2e;
$col-accent: #845368;
$size-mobile: 950px;
/* Global */
*,
*:before,
*:after {
box-sizing: border-box;
}
html { scroll-behavior: smooth }
body {
margin: 0;
padding: 0;
background-color: $col-bg;
color: $col-white;
line-height: 1.5;
2 years ago
font-size: 16px;
font-family: "moderat", sans-serif;
}
.wrap {
max-width: 90rem;
margin: 0 auto;
padding: 0 2rem;
}
.narrow {
max-width: 60rem;
margin: 0 auto;
}
.text-center {
text-align: center;
}
img {
display: block;
max-width: 100%;
}
2 years ago
2 years ago
h1, h2, h3, h4, h5, h6 {
text-align: center;
}
h1 {
font-size: 2.178rem;
text-transform: uppercase;
}
2 years ago
2 years ago
.text-bold {
font-weight: bold;
}
section {
padding-top: 3rem;
}
/* Specific */
body.noscroll {
overflow: hidden;
}
.intro {
min-height: 100vh;
display: flex;
flex-direction: column;
header {
position: relative;
border-bottom: 1px solid #5D6E81;
margin-bottom: 4em;
height: 5rem;
.wrap {
height: 100%;
}
.border-container {
width: 100%;
height: 100%;
display: flex;
align-items: stretch;
justify-content: space-between;
gap: 2rem;
border-width: 0 1px;
border-style: solid;
border-color: #5D6E81;
padding-left: 2rem;
}
.logo {
display: flex;
align-items: center;
flex-shrink: 0;
height: 100%;
img {
height: 2rem;
}
}
nav {
display: flex;
&.visible {
display: flex;
}
a {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
padding: 0 1.5em;
overflow: hidden;
font-weight: bold;
text-decoration: none;
text-align: center;
color: #fff;
border-left: 1px solid #5D6E81;
&:hover {
color: lighten($col-accent, 25%);
}
}
}
.menu-button {
display: none;
align-items: center;
flex-shrink: 0;
padding: 0 1.5em;
cursor: pointer;
border-left: 1px solid #5D6E81;
.image {
height: 2rem;
width: 2rem;
background-image: url("/static/img/menu-closed.svg");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
&.open {
background-image: url("/static/img/menu-open.svg");
}
}
}
}
section {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
.grid {
display: grid;
grid-template-columns: 1fr;
grid-column-gap: 2rem;
grid-row-gap: 2rem;
align-items: center;
}
.text {
max-width: 25rem;
margin: 0 auto;
text-align: center;
.title {
font-weight: bold;
font-size: 1.953rem;
}
p {
font-size: 1.25rem;
}
}
.player {
cursor: pointer;
video {
width: 100%;
border-radius: 2rem;
box-shadow: 0 0 42px 0 rgba(194,66,66,0.75);
transition: box-shadow 1s ease;
}
}
.video-list {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
img {
display: block;
border-radius: 1rem;
cursor: pointer;
flex: 1;
max-width: 45%;
width: 100%;
&.active {
outline: .15rem solid $col-accent;
}
}
}
.button {
display: flex;
justify-content: center;
align-items: center;
color: #fff;
text-decoration: none;
font-size: 1.25rem;
font-weight: bold;
border-radius: 2.5rem;
height: 5rem;
width: 100%;
max-width: 80%;
margin: 0 auto;
border: .15rem solid $col-accent;
&:hover {
background-color: $col-accent;
}
}
}
}
2 years ago
.facts {
text-align: center;
margin-top: 2rem;
padding-top: 5rem;
background-image: url("/static/img/bg/1.svg");
background-repeat: no-repeat;
background-position: top center;
background-size: 100% auto;
2 years ago
.title {
display: block;
position: relative;
font-size: 1.953rem;
font-weight: bold;
padding-bottom: 1em;
margin-bottom: 1em;
&:after {
content: "";
display: block;
position: absolute;
left: 50%;
bottom: 0;
width: 5rem;
height: 1px;
transform: translatex(-2.5rem);
background-color: #E6F3FA;
}
}
.fact-list {
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
padding: 5rem 0;
.item {
position: relative;
display: flex;
align-items: center;
flex-direction: column;
max-width: 13rem;
padding: 1em 0;
img {
height: 5em;
}
.heading {
font-weight: bold;
margin: 2em 0 1em 0;
}
p {
margin: 0;
}
&:after {
content: "";
display: block;
width: 75%;
height: 1px;
background-color: #8493A4;
margin-top: 4em;
}
&:last-child:after {
display: none;
}
}
}
}
.checklist {
display: flex;
justify-content: flex-start;
gap: 1em;
margin-top: 2rem;
overflow-x: scroll;
scrollbar-width: none;
// `overflow-y: visible` does not work
padding: 1rem;
.card {
display: flex;
flex-direction: column;
flex-shrink: 0;
width: 15em;
border: .15em solid $col-accent;
border-radius: 1em;
padding: 2em;
background-color: $col-bg;
text-align: left;
user-select: none;
img {
width: 100%;
}
&>.title {
position: relative;
font-weight: bold;
font-size: 1.138rem;
padding: 1em 0;
&:after {
content: "";
display: block;
position: absolute;
left: 0;
bottom: 0;
width: 25%;
height: 1px;
background-color: #fff;
}
}
.download {
margin-top: 1rem;
cursor: pointer;
&:hover {
color: lighten($col-accent, 25%);
}
.title {
display: flex;
align-items: baseline;
font-size: 1.25em;
font-weight: bold;
margin-bottom: .25em;
&:after {
content: url("/static/img/download-icon.svg");
display: inline-block;
height: 1em;
margin-left: .5rem;
}
}
.meta {
color: darken(#fff, 50%);
font-size: .85em;
}
}
}
}
.partners {
display: flex;
justify-content: center;
flex-wrap: wrap;
img {
width: clamp(20rem, 80vw, 0);
padding: 1.5em;
}
}
.faq-list {
width: 100%;
margin-top: 5em;
.faq {
position: relative;
display: grid;
grid-template-columns: auto auto;
column-gap: 1em;
width: 100%;
padding: 2em;
cursor: pointer;
background-color: inherit;
transition: all .5s ease;
// Hide bottom border.
// It is -2px to avoid float rounding errors
// which cause the border to appear in some widths.
margin-bottom: -2px;
&:before,
&:last-child:after {
content: "";
position: absolute;
left: 10%;
width: 80%;
border-width: 1px 0 0 0;
border-style: solid;
2 years ago
border-color: #8493A4;
}
&:before { top: 0 }
&:last-child:after { bottom: 0 }
&.active {
background-color: $col-accent;
z-index: 1;
&:before { border: 0 }
.answer {
height: auto;
margin-top: 1em;
opacity: 1;
}
.mark:before {
content: "\2212";
}
}
.mark:before {
content: "\002B";
display: block;
text-align: right;
color: #fff;
font-weight: bold;
font-size: 1.138rem;
}
.question {
2 years ago
font-size: 1.138rem;
}
.answer {
height: 0;
overflow: hidden;
opacity: 0;
transition: all .5s ease;
}
}
}
2 years ago
footer {
$logo-radius: 4.5em;
position: relative;
text-align: center;
2 years ago
font-size: 1.138rem;
2 years ago
padding: $logo-radius+1 2em 2em 2em;
margin-top: $logo-radius+6;
2 years ago
border-top: 1px solid #5d6e81;
&:before {
content: "";
position: absolute;
top: -$logo-radius;
left: 50%;
transform: translatex(-$logo-radius);
height: $logo-radius*2;
width: $logo-radius*2;
border: 1px solid #5d6e81;
border-radius: 50%;
background-image: url("/static/img/pedf-logo-white.svg");
2 years ago
background-position: center;
background-size: 75%;
background-repeat: no-repeat;
background-color: $col-bg;
}
}
@media only screen and (min-width: $size-mobile) {
.intro section {
.grid {
grid-template-columns: 2fr 3fr;
}
.text {
text-align: left;
line-height: 1.25;
margin: 0; // Disable centering
.title {
font-size: 2.5rem;
}
}
.video-list {
order: 4;
img {
max-width: 10rem;
}
}
.button {
margin: 0 auto 0 0; // Align left
max-width: 70%;
}
}
2 years ago
.facts {
.fact-list {
flex-direction: row;
justify-content: center;
align-items: stretch;
gap: 3rem;
.item {
border-right: 1px solid #8493A4;
justify-content: center;
padding: 0 3rem 0 0;
max-width: 16rem;
&:after {
display: none;
}
&:last-child {
border: none;
}
}
}
}
.faq-list .faq {
&:before,
&:last-child:after {
width: 100%;
left: 0;
}
}
.checklist {
justify-content: center;
}
}
@media only screen and (max-width: $size-mobile) {
.intro header {
.border-container {
border-left: 0;
padding: 0;
}
.menu-button {
display: flex;
}
nav {
display: none;
border: none;
flex-direction: column;
position: absolute;
left: 0;
top: 100%;
width: 100%;
min-height: 100vh;
margin-top: 1px; // Fix covering border of header
background-color: $col-bg;
a {
padding: 2em 1rem;
border: 0;
font-weight: bold;
font-size: 1.138rem;
border-bottom: 1px solid #5D6E81;
}
}
}
}