32 lines
569 B
Plaintext
32 lines
569 B
Plaintext
{% include "header" %}
|
|
<main class="np-main np-max-width np-page-container">
|
|
<div class="np-hidden-mobile" id="course-desktop">
|
|
{% include "course_desktop_view" %}
|
|
</div>
|
|
<div class="np-hidden-desktop" id="course-mobile">
|
|
{% include "course_mobile_view" %}
|
|
</div>
|
|
</main>
|
|
{% include "footer" %}
|
|
|
|
<style>
|
|
|
|
.np-top-cta {
|
|
background: transparent;
|
|
}
|
|
|
|
@media (min-width:768px) {
|
|
.np-page-container {
|
|
margin: 90px auto 0;
|
|
}
|
|
|
|
.np-page-container .np-card-container {
|
|
box-shadow:none;
|
|
}
|
|
|
|
.np-top-vocabulary {
|
|
display:none;
|
|
}
|
|
}
|
|
|
|
</style> |