191 lines
3.3 KiB
Plaintext
191 lines
3.3 KiB
Plaintext
{% comment %} skip-auth {% endcomment %}
|
|
{% include "header" %}
|
|
{% include "custom_page_certifications_hero" %}
|
|
|
|
{% include "custom_page_certificates_info" %}
|
|
|
|
{% include "custom_page_cs_credentials_info" %}
|
|
|
|
{% include "custom_page_certificate_full_details" %}
|
|
|
|
{% include "footer" %}
|
|
|
|
<style>
|
|
.custom-page-section {
|
|
padding: 50px 20px;
|
|
}
|
|
|
|
.section-title {
|
|
font-weight: 500;
|
|
font-size: 28px;
|
|
line-height: 34px;
|
|
text-align: center;
|
|
color: #153D5E;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.section-title.white {
|
|
color: #fff;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.card-column {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.certificate-card {
|
|
background-color: #ffffff;
|
|
box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
|
|
border-radius: 5px;
|
|
padding: 24px 32px;
|
|
height: 100%;
|
|
}
|
|
|
|
.certificate-card.pulse-card .certificate-card-container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.certificate-level {
|
|
font-weight: bold;
|
|
font-size: 25px;
|
|
line-height: 22px;
|
|
margin-bottom: 24px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.certificate-title {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
color: #5B6D86;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.certificate-card.pulse-card .certificate-title {
|
|
flex: 1;
|
|
margin-bottom: 12px;
|
|
color: #153D5E;
|
|
}
|
|
|
|
.certificate-card.pulse-card .certificate-text p {
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.certificate-info {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.certificate-info li {
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #21252A;
|
|
padding-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.certificate-info li:before {
|
|
content: '';
|
|
width: 8px;
|
|
height: 2px;
|
|
background-color: #21252A;
|
|
position: absolute;
|
|
left: -14px;
|
|
top: 9px;
|
|
}
|
|
|
|
.certificate-info.yellow li:before {
|
|
background-color: #FCC642;
|
|
}
|
|
|
|
.certificate-info.red li:before {
|
|
background-color: #EC246D;
|
|
}
|
|
|
|
.certificate-info.green li:before {
|
|
background-color: #569A86;
|
|
}
|
|
|
|
.color-yellow {
|
|
color: #FCC642;
|
|
}
|
|
|
|
.color-red {
|
|
color: #EC246D;
|
|
}
|
|
|
|
.color-green {
|
|
color: #569A86;
|
|
}
|
|
|
|
.expandable-info {
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
transition: max-height 0.4s ease-out;
|
|
}
|
|
|
|
.expandable-info.is-open {
|
|
max-height: 20em;
|
|
overflow: visible;
|
|
}
|
|
|
|
.show-more-link {
|
|
font-weight: bold;
|
|
font-size: 17px;
|
|
line-height: 20px;
|
|
color: #00B4E6;
|
|
padding-top: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.show-more-link.is-open {
|
|
text-indent: -9999px;
|
|
}
|
|
|
|
.show-more-link.is-open:after {
|
|
content: "Show less";
|
|
text-indent: 0;
|
|
line-height: 0;
|
|
display: block;
|
|
}
|
|
|
|
.certificate-details-box {
|
|
background-color: #ffffff;
|
|
box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
|
|
border-radius: 4px;
|
|
padding: 24px 32px;
|
|
}
|
|
|
|
.certificate-details-box-scrollable-content {
|
|
max-height: 500px;
|
|
overflow: scroll;
|
|
margin-right: -16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.certificate-details-box h3 {
|
|
color: #5B6D86;
|
|
font-weight: bold;
|
|
font-size: 25px;
|
|
line-height: 30px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.certificate-call-to-action {
|
|
margin-top: 32px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.custom-page-section {
|
|
padding: 50px 5%;
|
|
}
|
|
|
|
.certificate-details-box-scrollable-content {
|
|
max-height: 730px;
|
|
}
|
|
}
|
|
</style> |