swift
This commit is contained in:
1
.mind/data/20220906094735-Northpass.md
Normal file
1
.mind/data/20220906094735-Northpass.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# Northpass
|
||||||
1
.mind/state.json
Normal file
1
.mind/state.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"icon":" ","data":".mind\/data\/20220906094735-Northpass.md","uid":"20220906094343","contents":[{"text":"Northpass"}],"type":1}
|
||||||
@ -203,6 +203,14 @@ Molly should not have access to course Marketplace
|
|||||||
# DoubleVerify
|
# DoubleVerify
|
||||||
- google sheets formula to add True/False to a cell if previous cell has a DV email or not - =IF(REGEXMATCH(B4, "@doubleverify"), True, False)
|
- google sheets formula to add True/False to a cell if previous cell has a DV email or not - =IF(REGEXMATCH(B4, "@doubleverify"), True, False)
|
||||||
|
|
||||||
|
* Request from Rachel for Custom Report via Looker
|
||||||
|
· Date Range: Last 30 Days
|
||||||
|
· Learner Name
|
||||||
|
· Learner Email (please exclude anyone with an @doubleverify.com email address – looking for non-DV team members only)
|
||||||
|
· Course Progress
|
||||||
|
· Course Name
|
||||||
|
|
||||||
|
|
||||||
## Demo with Mark Protus
|
## Demo with Mark Protus
|
||||||
Integration with LI Learning
|
Integration with LI Learning
|
||||||
Wants to stay within LMS and consume LinkedIn Learning content
|
Wants to stay within LMS and consume LinkedIn Learning content
|
||||||
@ -784,8 +792,7 @@ Andre in that meeting aswell
|
|||||||
# SPS Commerce
|
# SPS Commerce
|
||||||
|
|
||||||
## Todo Lists
|
## Todo Lists
|
||||||
|
[X] Check in on workflows in a few weeks
|
||||||
- [X] Check in on workflows in a few weeks
|
|
||||||
- [X] Connect Kayla and KJ for Analytics sync
|
- [X] Connect Kayla and KJ for Analytics sync
|
||||||
- [ ] Ask if we can do a Trial of Enterprise Workflows
|
- [ ] Ask if we can do a Trial of Enterprise Workflows
|
||||||
Hard to make a call on the value 1. on the internal use, as it isn't totally needed and 2. see how they want to connect external systems.
|
Hard to make a call on the value 1. on the internal use, as it isn't totally needed and 2. see how they want to connect external systems.
|
||||||
@ -1487,6 +1494,16 @@ They feel like this has been talked about for a longtime. Just waiting for a GO
|
|||||||
* [ ] https://TBD.TBD.com
|
* [ ] https://TBD.TBD.com
|
||||||
* [X] Remove Learning Paths from Templates (Homepage + Subnav)
|
* [X] Remove Learning Paths from Templates (Homepage + Subnav)
|
||||||
|
|
||||||
|
## Meeting with Meesha & Sara re: Workato
|
||||||
|
* Meesha's Goal - best way to implement Northpass?
|
||||||
|
* Best Practices - What's going to work for them?
|
||||||
|
* Ideal usage of Data?
|
||||||
|
* Someone engages with that piece of content
|
||||||
|
* Marketo Tracks a course completion - Success!
|
||||||
|
* Katlin also wants to trigger an email for someone that starts a course but doesn't complete
|
||||||
|
* Lofty goals? Not yet, most will be on the marketo side
|
||||||
|
* Setup customer MQL
|
||||||
|
*
|
||||||
|
|
||||||
# Happy Culture
|
# Happy Culture
|
||||||
|
|
||||||
@ -1533,9 +1550,15 @@ Current Issues:
|
|||||||
* Separate Instances for Internal Side & External Side
|
* Separate Instances for Internal Side & External Side
|
||||||
* Lessonly Contract Expires on October 4th
|
* Lessonly Contract Expires on October 4th
|
||||||
|
|
||||||
|
Katie & Lizzy never want access to the Pals side
|
||||||
|
People should be in isolated instances
|
||||||
|
Care center vs Pals
|
||||||
|
|
||||||
|
ADP Integration -
|
||||||
|
Okta SSO - Ted, Security Team
|
||||||
|
|
||||||
# Nana
|
# Nana
|
||||||
* [ ] Send template blog, and academy screenshots
|
* [X] Send template blog, and academy screenshots
|
||||||
* [ ]
|
|
||||||
|
|
||||||
# Meeting with Steve regarding my Accounts
|
# Meeting with Steve regarding my Accounts
|
||||||
|
|
||||||
@ -1570,4 +1593,4 @@ Current Issues:
|
|||||||
* Finds it very cumbersome
|
* Finds it very cumbersome
|
||||||
* Acquired by LivePerson - apparently LivePerson acquired a bunch of health companies
|
* Acquired by LivePerson - apparently LivePerson acquired a bunch of health companies
|
||||||
* Next Batch: Another Person from Talkspace, DeptAgency
|
* Next Batch: Another Person from Talkspace, DeptAgency
|
||||||
*
|
* :
|
||||||
|
|||||||
BIN
NP_Custom_Templates/customer_templates/.DS_Store
vendored
BIN
NP_Custom_Templates/customer_templates/.DS_Store
vendored
Binary file not shown.
@ -0,0 +1,81 @@
|
|||||||
|
<footer class="np-footer">
|
||||||
|
<div class="np-footer-top">
|
||||||
|
{% if website_footer.show_navigation_links? %}
|
||||||
|
<div class="np-footer-navigation">
|
||||||
|
<ul class="np-footer-navigation-list">
|
||||||
|
{% for website_navigation in navigations.footer_navigations %}
|
||||||
|
<li class="np-footer-navigation-item">
|
||||||
|
<a
|
||||||
|
class="np-footer-navigation-link np-button-color"
|
||||||
|
href="{{ website_navigation.path }}"
|
||||||
|
{% if website_navigation.external? %} target="_blank" {% endif %}
|
||||||
|
>
|
||||||
|
{{ website_navigation.name }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
<li class="np-footer-navigation-item">
|
||||||
|
<a class="np-footer-navigation-link np-button-color" href="https://swiftacademy.northpass.com/app/feedback" target="_blank"> Feedback</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if current_school.logo_url %}
|
||||||
|
<h2 class="np-footer-logo">
|
||||||
|
<a href="{% route home %}">
|
||||||
|
<img
|
||||||
|
alt="{{ current_school.name }}"
|
||||||
|
class="np-footer-logo-image"
|
||||||
|
src="{{ current_school.logo_url }}"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
{% else %}
|
||||||
|
<div class="np-school-name np-header-font-color">
|
||||||
|
{{ current_school.name }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="np-footer-bottom">
|
||||||
|
<nav class="np-footer-social-links">
|
||||||
|
{% if website_footer.show_social_media_links? %}
|
||||||
|
<ul class="np-footer-social-links-list">
|
||||||
|
{% for social_media_link in website_footer.social_media_links %}
|
||||||
|
<li class="np-footer-social-links-item">
|
||||||
|
<a
|
||||||
|
class="np-footer-social-links-link np-button-color"
|
||||||
|
href="{{ social_media_link.link }}"
|
||||||
|
target="_blank" title="{{ social_media_link.name }}"
|
||||||
|
>
|
||||||
|
<i class="np-footer-social-links-icon
|
||||||
|
np-button-color
|
||||||
|
fab fa-{{ social_media_link.name }}"
|
||||||
|
></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{% if website_footer.show_customer_service_email? and
|
||||||
|
website_footer.school_customer_service_email
|
||||||
|
%}
|
||||||
|
<div class="np-footer-support">
|
||||||
|
<div class="np-footer-support-item np-footer-support-help">
|
||||||
|
{% t .need_help %}
|
||||||
|
</div>
|
||||||
|
<div class="np-footer-support-item np-footer-support-email">
|
||||||
|
{% t .email %}
|
||||||
|
</div>
|
||||||
|
<a
|
||||||
|
class="np-footer-support-item np-footer-support-link np-button-color"
|
||||||
|
href="mailto:{{ website_footer.school_customer_service_email }}"
|
||||||
|
>
|
||||||
|
{{ website_footer.school_customer_service_email }}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
@ -0,0 +1,16 @@
|
|||||||
|
<style>
|
||||||
|
.np-sub-navigation{
|
||||||
|
padding-bottom: 30px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% include "header" %}
|
||||||
|
{% include "course_version_outdated_alert", courses: courses.featured %}
|
||||||
|
{% include "sub_navigation" %}
|
||||||
|
|
||||||
|
<main class="np-main np-subpage-container np-max-width np-flex-center justify-content-center">
|
||||||
|
|
||||||
|
<div class="np-resource-title center">Feedback about Swift Academy</div>
|
||||||
|
|
||||||
|
|
||||||
|
<iframe style="width: 100%; height: 2000px; overflow: hidden; margin-top: 20px;" src="https://www.surveymonkey.com/r/ZQRYZYK" scrolling="yes">Iframes not supported</iframe></main>
|
||||||
|
{% include "footer" %}
|
||||||
@ -0,0 +1,101 @@
|
|||||||
|
{% include "header" %}
|
||||||
|
{% include "course_version_outdated_alert", courses: courses.featured %}
|
||||||
|
{% include "sub_navigation" %}
|
||||||
|
<main class="np-main np-homepage">
|
||||||
|
<div class="np-homepage-hero">
|
||||||
|
<img class="np-homepage-hero-image"
|
||||||
|
src="{{ homepage.artwork_url }}"
|
||||||
|
alt="{{ homepage.headline }}"
|
||||||
|
/>
|
||||||
|
<div class="np-homepage-hero-content">
|
||||||
|
<div class="np-homepage-headline np-header-font-color col-xs-9 col-md-8 col-lg-6 np-stretch-content">
|
||||||
|
{{ homepage.headline }}
|
||||||
|
</div>
|
||||||
|
<div class="np-homepage-subheadline np-header-font-color col-xs-9 col-md-8 col-lg-6 np-stretch-content">
|
||||||
|
{{ homepage.subheadline }}
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<a class="np-homepage-hero-cta np-button col-xs-5 col-md-4 col-lg-3 np-stretch-content swiftPink-button mr-1" href="{% route learning_path %}">
|
||||||
|
Swift 101
|
||||||
|
</a>
|
||||||
|
<a class="np-homepage-hero-cta np-button col-xs-5 col-md-4 col-lg-3 np-stretch-content ml-1" href="{% route catalog %}">
|
||||||
|
More Swift Courses
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="np-homepage-featured np-max-width">
|
||||||
|
<div class="np-homepage-featured-text">
|
||||||
|
<div class="np-homepage-headline">
|
||||||
|
{{ homepage.featured_courses_headline }}
|
||||||
|
</div>
|
||||||
|
<div class="np-homepage-subheadline">
|
||||||
|
{{ homepage.featured_courses_subheadline }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% if courses.featured.any? %}
|
||||||
|
<div class="np-homepage-featured-courses row">
|
||||||
|
{% for course in courses.featured %}
|
||||||
|
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content">
|
||||||
|
{% include "cards_course" with course %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="np-homepage-featured-empty">
|
||||||
|
<div class="np-zero-state-text">
|
||||||
|
{% t .empty, key: current_school.course_vocabulary %}
|
||||||
|
</div>
|
||||||
|
<img
|
||||||
|
class="np-zero-state-courses"
|
||||||
|
alt="{% t .empty, key: current_school.course_vocabulary %}"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="np-max-width">
|
||||||
|
<div class="np-homepage-featured-text">
|
||||||
|
<div class="np-homepage-headline m-sub">
|
||||||
|
Learn more about the Swift Medical Team
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="np-homepage-featured-courses row">
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileSandy-1.png">
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content ">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileKayla-1.png">
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileAmy-1.png">
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileRob-1.png">
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileJose-1.png">
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content ">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileEmma-1.png">
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileDebra-1.png">
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-6 col-md-4 col-lg-3 np-stretch-content">
|
||||||
|
<img class="np-card-image" src="https://info.swiftmedical.com/hubfs/+%20People%20Photos,%20Headshots/ProfileBob-1.png">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="np-homepage-featured-text mt-3">
|
||||||
|
<div class="np-homepage-headline m-sub">
|
||||||
|
How to Use Swift - Quick Video Walkthrough
|
||||||
|
</div>
|
||||||
|
<div class="center ">
|
||||||
|
<video class="small-shadow" width="100%" height="auto" poster="https://info.swiftmedical.com/hubfs/Instructional%20Video/Full%20Wound%20Evaluation%20-%20Image.png" controls>
|
||||||
|
<source src="https://info.swiftmedical.com/hubfs/Instructional%20Video/Full%20Wound%20Evaluation.mp4" />
|
||||||
|
</video>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
{% include "footer" %}
|
||||||
@ -0,0 +1,83 @@
|
|||||||
|
<style>
|
||||||
|
.np-sub-navigation{
|
||||||
|
padding-bottom: 30px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% include "header" %}
|
||||||
|
{% include "course_version_outdated_alert", courses: courses.featured %}
|
||||||
|
{% include "sub_navigation" %}
|
||||||
|
|
||||||
|
<main class="np-main np-subpage-container np-max-width np-flex-center justify-content-center">
|
||||||
|
|
||||||
|
<div class="np-resource-title center">Onboarding Courses for Nurses and Clinicians</div>
|
||||||
|
<div class="np-flex-center row center ">
|
||||||
|
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content mt-3" >
|
||||||
|
<div class="np-card">
|
||||||
|
|
||||||
|
<div class="np-card-container">
|
||||||
|
|
||||||
|
<img class="np-card-image" alt="Swift Ready Certificate! " src="https://cdn.filestackcontent.com/security=policy:eyJleHBpcnkiOjQ4MTc2NTgxODYsImNhbGwiOlsicmVhZCIsImNvbnZlcnQiLCJzdG9yZSIsInBpY2siLCJyZW1vdmUiXX0=,signature:e46307533eed333042c2bf43528534455694e9c127687a2d0c09f991b5c86bd9/epXrIST9G02cKRTiCEAe">
|
||||||
|
<div class="np-card-content np-card-content-vertical np-card-padding">
|
||||||
|
<h3 class="np-card-content-title">
|
||||||
|
Swift Ready Onboarding
|
||||||
|
</h3>
|
||||||
|
<div class="np-resource-subtitle center mt-1" >Option 1: Complete this 30 Minute Swift Ready training to quickly get started</div>
|
||||||
|
<div class="np-card-content-footer">
|
||||||
|
<div class="np-card-content-progress np-button-color">
|
||||||
|
Not started
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<a class="np-button np-button-wide" href="/app/courses/d94dce02-b3f7-4107-9918-d28a9fbb490b">
|
||||||
|
View
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content mt-3" >
|
||||||
|
<div class="np-card">
|
||||||
|
|
||||||
|
<div class="np-card-container">
|
||||||
|
|
||||||
|
<div class="np-card-ribbon">
|
||||||
|
Certification
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<img class="np-card-image" alt="Mobile Swift Skin and Wound Onboarding " src="https://cdn.filestackcontent.com/security=policy:eyJleHBpcnkiOjQ4MTc2NTgxODYsImNhbGwiOlsicmVhZCIsImNvbnZlcnQiLCJzdG9yZSIsInBpY2siLCJyZW1vdmUiXX0=,signature:e46307533eed333042c2bf43528534455694e9c127687a2d0c09f991b5c86bd9/nJIddCaeQ5qxzUuf7Wti">
|
||||||
|
<div class="np-card-content np-card-content-vertical np-card-padding">
|
||||||
|
<h3 class="np-card-content-title">
|
||||||
|
Swift Skin and Wound Certification
|
||||||
|
</h3>
|
||||||
|
<div class="np-resource-subtitle center mt-1">Option 2: Learn the details of Swift and become <b>Swift Skin and Wound Certified</b></div>
|
||||||
|
|
||||||
|
<div class="np-card-content-footer">
|
||||||
|
<div class="np-card-content-progress np-button-color">
|
||||||
|
Not started
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<a class="np-button np-button-wide" href="/app/courses/fa9c5b34-3117-4d7a-8c5c-7bd7c99dedc9">
|
||||||
|
View
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="np-resource-title justify-content-center center">Looking for more content? </div>
|
||||||
|
<div class="np-resource-subtitle center">Explore the catalog for a full selection of courses that are available </div>
|
||||||
|
<div class="np-sub-navigation-content-item np-sub-navigation-content-item-active">
|
||||||
|
<a class="np-sub-navigation-content-item-link" href="/app/catalog">
|
||||||
|
<i class="far fa-graduation-cap np-button-color np-sub-navigation-content-item-icon"></i>
|
||||||
|
Catalog
|
||||||
|
</a>
|
||||||
|
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
{% include "footer" %}
|
||||||
@ -0,0 +1,98 @@
|
|||||||
|
/*
|
||||||
|
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 }}
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
.center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mr-1 {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ml-1 {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx-1 {
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-1 {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-3 {
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-left{
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.justify{
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-shadow{
|
||||||
|
border: 2px solid #333333;
|
||||||
|
box-shadow: 3px 3px 3px #888888;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiftPink-button{
|
||||||
|
background-color: #ee255c;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiftPink-button:hover {
|
||||||
|
background-color: #e1466f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.np-homepage-subheadline{
|
||||||
|
line-height: 2rem
|
||||||
|
}
|
||||||
|
|
||||||
|
.np-card-content-progress {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.np-top-cta-progress-content {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.m-sub {
|
||||||
|
margin-top: 40px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 500px){
|
||||||
|
.np-homepage-subheadline{
|
||||||
|
line-height: 1rem
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (min-width: 768px){
|
||||||
|
.np-learning-path-image {
|
||||||
|
padding: 1em 0px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1500px){
|
||||||
|
.np-learning-path-image {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user