136 lines
2.6 KiB
Plaintext
136 lines
2.6 KiB
Plaintext
/* brand colors */
|
|
:root {
|
|
--green: #017737;
|
|
--green-dark: #014722;
|
|
--green-light: #D7F9D3;
|
|
--purple: #6861F2;
|
|
--purple-dark: #393A97;
|
|
--purple-light: #CFD0F9;
|
|
--yelow: #FFDE00;
|
|
--black-digital: #192435;
|
|
}
|
|
/* general styling */
|
|
body {
|
|
color: var(--black-digital);
|
|
background: #FFF;
|
|
}
|
|
a, a:hover, a:focus, a:active {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
.container {
|
|
width: auto
|
|
}
|
|
.width-limit {
|
|
padding-left: 2rem;
|
|
padding-right: 2rem;
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
.width-limit {
|
|
padding-left: 3rem;
|
|
padding-right: 3rem;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 1500px) {
|
|
.width-limit {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
max-width: 1404px;
|
|
margin: auto;
|
|
}
|
|
}
|
|
.button-small, .button-large {
|
|
font-weight: 700;
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
}
|
|
.button-small {
|
|
padding: 8px 10px;
|
|
font-size: 14px;
|
|
line-height: 17px;
|
|
}
|
|
.button-large {
|
|
padding: 15px 20px;
|
|
font-size: 22px;
|
|
line-height: 26px;
|
|
}
|
|
.button-1 {
|
|
background: var(--purple);
|
|
color: #FFF;
|
|
border: none;
|
|
}
|
|
.button-1:hover {
|
|
background: #413D99;
|
|
color: white;
|
|
}
|
|
.button-2 {
|
|
background: #E1E1FF;
|
|
color: #413D99;
|
|
border: none;
|
|
}
|
|
.button-2:hover {
|
|
background: #C4C2FF;
|
|
color: #413D99;
|
|
}
|
|
|
|
.np-button:hover {
|
|
color: white;
|
|
}
|
|
|
|
|
|
.green-banner-wrapper {
|
|
background: var(--green-light);
|
|
}
|
|
.green-banner {
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
}
|
|
.green-banner-image {
|
|
width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
.green-banner-title {
|
|
font-size: 32px;
|
|
color: var(--green);
|
|
font-weight: 700;
|
|
line-height: 42px;
|
|
}
|
|
.green-banner-text {
|
|
font-size: 18px;
|
|
line-height: 30px;
|
|
margin-bottom: 20px;
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
.green-banner-wrapper-text .green-banner-title,
|
|
.green-banner-wrapper-text .green-banner-text {
|
|
text-align: center;
|
|
}
|
|
.green-banner-wrapper-text .green-banner-button {
|
|
margin: auto;
|
|
}
|
|
.green-banner-wrapper-image .green-banner {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
gap: 40px;
|
|
}
|
|
.green-banner-image {
|
|
margin-bottom: 0;
|
|
flex: 1 1 0px;
|
|
width: 0;
|
|
object-fit: contain;
|
|
}
|
|
.green-banner-wrapper-image .green-banner-content {
|
|
flex: 1 1 0px;
|
|
width: 0;
|
|
align-self: center;
|
|
}
|
|
.green-banner-title {
|
|
font-size: 60px;
|
|
line-height: 78px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.green-banner-button {
|
|
width: max-content;
|
|
}
|
|
}
|