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.

251 lines
3.6 KiB
SCSS

@import "fonts";
$col-white: #fff;
$col-bg: #0b1b2e;
$col-accent: #845368;
/* Global */
*,
*:before,
*:after {
box-sizing: border-box;
}
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 1rem;
}
img {
display: block;
max-width: 100%;
}
2 years ago
2 years ago
h1, h2, h3, h4, h5, h6 {
text-align: center;
}
2 years ago
h1 { font-size: 2.178rem }
2 years ago
2 years ago
.text-bold {
font-weight: bold;
}
section {
padding-top: 3rem;
}
/* Specific */
.intro {
header {
border-bottom: 1px solid #5D6E81;
margin-bottom: 4em;
.border-container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
border-width: 0 1px;
border-style: solid;
border-color: #5D6E81;
padding-left: 2rem;
}
.logo {
height: 2rem;
}
nav {
display: flex;
a {
display: block;
padding: 2em 1.5em;
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;
}
}
section {
max-width: 65%;
margin: 0 auto;
text-align: center;
.title {
font-weight: bold;
font-size: 1.953rem;
}
p {
font-size: 1.25rem;
}
}
}
.checklist {
display: flex;
gap: 1em;
overflow: visible;
margin-top: 3em;
padding: 0 2em;
.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;
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;
}
}
}
}
.partners {
display: flex;
justify-content: center;
flex-wrap: wrap;
img {
width: clamp(20rem, 80vw, 0);
padding: 1.5em;
}
}
.faq-list {
width: 100%;
.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;
border-color: #8392a3;
}
&: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;
}
}
.mark {
text-align: right;
}
.question {
2 years ago
font-size: 1.138rem;
}
.answer {
height: 0;
overflow: hidden;
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/pedf-logo-white.svg");
background-position: center;
background-size: 75%;
background-repeat: no-repeat;
background-color: $col-bg;
}
}