epfl-elements 4.0.0 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/pages/maintenance/maintenance.twig +52 -0
- package/dist/components/pages/maintenance/maintenance.yml +2 -0
- package/dist/css/elements.css +12 -12
- package/dist/css/elements.min.css +1 -1
- package/dist/css/elements.min.css.map +1 -1
- package/dist/js/reader.js +279 -261
- package/dist/js/reader.min.js +1 -1
- package/dist/js/reader.min.js.map +1 -1
- package/dist/package.json +3 -3
- package/package.json +3 -3
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{% set isSpecial = true %}
|
|
2
|
+
|
|
3
|
+
{% extends "@templates/base/base.twig" %}
|
|
4
|
+
|
|
5
|
+
{% block header %}
|
|
6
|
+
<header role="banner" class="header">
|
|
7
|
+
<a class="logo" href="https://www.epfl.ch">
|
|
8
|
+
<img src="svg/epfl-logo.svg" alt="Logo EPFL, École polytechnique fédérale de Lausanne" class="img-fluid">
|
|
9
|
+
</a>
|
|
10
|
+
</header>
|
|
11
|
+
{% endblock %}
|
|
12
|
+
|
|
13
|
+
{% block breadcrumb %}
|
|
14
|
+
<div class="breadcrumb-container">
|
|
15
|
+
<nav aria-label="breadcrumb" class="breadcrumb-wrapper">
|
|
16
|
+
<ol class="breadcrumb">
|
|
17
|
+
<li class="breadcrumb-item">
|
|
18
|
+
<a href="#">
|
|
19
|
+
{% include '@atoms/icon/icon.twig' with { icon: 'icon-home' } %}
|
|
20
|
+
</a>
|
|
21
|
+
</li>
|
|
22
|
+
<li class="breadcrumb-item">Maintenance</li>
|
|
23
|
+
</ol>
|
|
24
|
+
</nav>
|
|
25
|
+
</div>
|
|
26
|
+
{% endblock %}
|
|
27
|
+
|
|
28
|
+
{% block main %}
|
|
29
|
+
<main id="main" role="main" class="content container">
|
|
30
|
+
|
|
31
|
+
{% block content %}
|
|
32
|
+
<h1 class="my-5">Maintenance</h1>
|
|
33
|
+
<p>
|
|
34
|
+
The site is currently under maintenance. Please come back a little later.
|
|
35
|
+
</p>
|
|
36
|
+
<p>
|
|
37
|
+
Le site est actuellement en maintenance. Merci de revenir un peu plus tard.
|
|
38
|
+
</p>
|
|
39
|
+
{% endblock %}
|
|
40
|
+
|
|
41
|
+
</main>
|
|
42
|
+
{% endblock %}
|
|
43
|
+
|
|
44
|
+
{% block footer_container %}
|
|
45
|
+
<div class="bg-gray-100 pt-5">
|
|
46
|
+
<div class="container">
|
|
47
|
+
{% block footer %}
|
|
48
|
+
{% include '@organisms/footer/footer-light.twig' %}
|
|
49
|
+
{% endblock %}
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
{% endblock %}
|
package/dist/css/elements.css
CHANGED
|
@@ -16326,17 +16326,17 @@ ol.flickity-page-dots li:before {
|
|
|
16326
16326
|
.question .custom-control-label-content {
|
|
16327
16327
|
margin-bottom: -1px;
|
|
16328
16328
|
}
|
|
16329
|
-
.question-
|
|
16330
|
-
padding: 1rem 0;
|
|
16331
|
-
}
|
|
16332
|
-
.custom-control-input:checked + .custom-control-label {
|
|
16329
|
+
.question .custom-control-input:checked + .custom-control-label {
|
|
16333
16330
|
padding-left: 0.5rem;
|
|
16334
16331
|
margin-right: -0.5rem;
|
|
16335
16332
|
z-index: 10;
|
|
16336
16333
|
}
|
|
16337
|
-
.custom-control-input:checked + .custom-control-label .trapeze-vertical {
|
|
16334
|
+
.question .custom-control-input:checked + .custom-control-label .trapeze-vertical {
|
|
16338
16335
|
border-right-width: 0.5rem;
|
|
16339
16336
|
}
|
|
16337
|
+
.question-content {
|
|
16338
|
+
padding: 1rem 0;
|
|
16339
|
+
}
|
|
16340
16340
|
}
|
|
16341
16341
|
@media (min-width: 992px) {
|
|
16342
16342
|
.question {
|
|
@@ -16384,6 +16384,13 @@ ol.flickity-page-dots li:before {
|
|
|
16384
16384
|
height: 100%;
|
|
16385
16385
|
margin-left: -1px;
|
|
16386
16386
|
}
|
|
16387
|
+
.question .custom-control-input:checked + .custom-control-label {
|
|
16388
|
+
margin-top: -0.5rem !important;
|
|
16389
|
+
padding-bottom: 0.5rem;
|
|
16390
|
+
}
|
|
16391
|
+
.question .custom-control-input:checked + .custom-control-label .trapeze-horizontal {
|
|
16392
|
+
border-top-width: 0.5rem;
|
|
16393
|
+
}
|
|
16387
16394
|
.question-img {
|
|
16388
16395
|
-webkit-box-flex: 0;
|
|
16389
16396
|
-ms-flex: 0 0 45%;
|
|
@@ -16407,13 +16414,6 @@ ol.flickity-page-dots li:before {
|
|
|
16407
16414
|
.question-content {
|
|
16408
16415
|
padding: 0 4rem;
|
|
16409
16416
|
}
|
|
16410
|
-
.custom-control-input:checked + .custom-control-label {
|
|
16411
|
-
margin-top: -0.5rem !important;
|
|
16412
|
-
padding-bottom: 0.5rem;
|
|
16413
|
-
}
|
|
16414
|
-
.custom-control-input:checked + .custom-control-label .trapeze-horizontal {
|
|
16415
|
-
border-top-width: 0.5rem;
|
|
16416
|
-
}
|
|
16417
16417
|
}
|
|
16418
16418
|
.social-share-container {
|
|
16419
16419
|
display: -webkit-box;
|