Files
2026-03-31 16:58:08 -04:00

216 lines
4.0 KiB
Plaintext

/*
Put your custom overlay styles in here
You can use your northpass color palette in this file
{{ color_palette.button_font_color }}
{{ color_palette.button_color }}
{{ color_palette.button_hover_color }}
{{ color_palette.header_font_color }}
{{ color_palette.header_font_hover_color }}
{{ color_palette.header_color }}
*/
/* GLOBAL STYLES */
body,
html {
font-family: 'Poppins', 'Roboto', sans-serif;
background:#fff;
}
.np-dashboard,
.np-learning-paths {
background: #fff;
}
.np-button { border-radius:6px; }
/* CARD STYLES */
.course-card { box-shadow:none; }
.course-card .np-card-container {
box-shadow:none;
border-radius:6px;
transition: all 0.4s;
text-decoration:none;
}
.course-card .np-card-container:hover {
box-shadow: 0 20px 40px rgb(0 0 0 / 20%);
}
.np-card-image {
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.np-card-content { background-color: #fafafa; }
.np-card-content {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
.np-card-content-title {
color:#000;
line-height: 1.8rem;
text-transform: uppercase;
margin-bottom:0;
}
.card-description {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
font-size: 14px;
line-height:24px;
flex:1;
}
.course-card .np-card-content-footer {
margin-top:20px;
}
.np-card-link {
text-transform: uppercase;
color: #015893;
text-decoration: none;
font-weight: 700;
font-size:14px;
}
.np-card-link i {
margin-left: 8px;
}
@media (min-width:768px) {
.course-card {
padding: 0 16px 64px!important;
}
.row-with-thumbnails {
margin-left:-16px;
margin-right:-16px;
}
}
/* BASIC HERO STYLING */
.basic-hero {
background-color:#eeedeb;
padding:64px 24px;
}
.basic-hero.has-image {
background-image:url(https://cdn.filestackcontent.com/security=policy:eyJleHBpcnkiOjQ4MzA3OTc4NTIsImNhbGwiOlsicmVhZCIsImNvbnZlcnQiLCJzdG9yZSIsInBpY2siLCJyZW1vdmUiXX0=,signature:ec548cdaa252122149df9f83b63236e888dbe9f59deb76804fe9a7d2da31e35e/QEjCvV4rSOKuUj2quMsY);
background-repeat: no-repeat;
background-size:cover;
background-position:center;
}
.basic-hero .hero-content {
max-width: 1170px;
width:100%;
margin: auto;
}
.basic-hero .hero-content .np-resource-title,
.basic-hero .hero-content .np-resource-subtitle {
text-align:center;
color:#264c6f;
}
.basic-hero.has-image .hero-content .np-resource-title,
.basic-hero.has-image .hero-content .np-resource-subtitle {
color:#fff;
}
.basic-hero .hero-content .np-resource-title {
font-size: 40px;
line-height:48px;
text-transform: none;
}
.np-header-search.hero-search {
margin:60px auto 0;
max-width:900px;
}
.np-header-search-input.hero-search-input {
width: 100%;
background: transparent;
border: 1px solid #fff;
padding: 8px 16px;
border-radius:6px;
height:50px;
opacity:1;
}
.np-header-search.hero-search .np-header-search-icon {
right:16px;
top: 16px;
}
@media (min-width:768px) {
.basic-hero {
background-color:rgb(204, 204, 204);
padding:110px 24px 32px;
min-height:430px;
display: flex;
}
.basic-hero.has-image {
min-height:550px;
}
.basic-hero .hero-content .np-resource-title {
font-size: 48px;
line-height:56px;
}
.basic-hero .hero-content .np-resource-subtitle {
font-size: 24px;
margin-top: 32px;
}
}
@media (min-width:1200px) {
.basic-hero .hero-content .np-resource-title {
font-size: 72px;
line-height:80px;
}
.basic-hero .hero-content .np-resource-subtitle {
font-size: 30px;
line-height:36px;
margin-top: 40px;
}
}
/* FOOTER STYLES */
.np-footer,
.np-footer+.np-powered-by,
.np-powered-by {
background: #264c6f!important;
}
.np-powered-by .np-powered-by-link {
color:#fff!important;
}
.np-footer-support-help,
.np-footer-support-item {
color:#fff;
}
.np-footer-navigation-link {
color: #fff;
font-weight:700;
}
.np-footer-logo-image {
opacity:1;
filter: grayscale(1) brightness(1) invert(1);
}