epfl-elements 4.2.1 → 4.4.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/assets/config/variables.scss +9 -0
- package/dist/components/atoms/nav-lang/nav-lang.twig +2 -2
- package/dist/components/atoms/nav-toggle-mobile/nav-toggle-mobile.twig +2 -2
- package/dist/components/atoms/nav-user/nav-user-login.twig +6 -0
- package/dist/components/atoms/nav-user/nav-user.twig +16 -0
- package/dist/components/atoms/nav-user/nav-user.yml +10 -0
- package/dist/components/atoms/tag/tag.twig +6 -6
- package/dist/components/content-types/event/event-listing-featured.twig +3 -3
- package/dist/components/content-types/event/event-listing.twig +3 -3
- package/dist/components/content-types/event/event.twig +46 -16
- package/dist/components/content-types/graph-search/graph-search.twig +37 -0
- package/dist/components/content-types/graph-search/graph-search.yml +2 -0
- package/dist/components/molecules/list-group/list-group-event.twig +74 -0
- package/dist/components/organisms/footer/footer-buttons.twig +3 -3
- package/dist/components/organisms/header/header-light.twig +12 -1
- package/dist/components/organisms/header/header.twig +4 -0
- package/dist/components/organisms/restauration/restauration.twig +4 -4
- package/dist/components/pages/association-homepage/association-homepage.twig +1 -1
- package/dist/components/pages/event-list/event-list.twig +11 -11
- package/dist/components/pages/lab-homepage/lab-homepage.twig +4 -0
- package/dist/components/pages/people-detail/people-detail.twig +1 -1
- package/dist/css/elements.css +423 -51
- package/dist/css/elements.min.css +1 -1
- package/dist/css/elements.min.css.map +1 -1
- package/dist/css/reader.css +8 -0
- package/dist/css/reader.min.css +1 -1
- package/dist/css/reader.min.css.map +1 -1
- package/dist/docs/user documentation/reports.md +27 -22
- package/dist/icons/icons.svg +1 -1
- package/dist/js/reader.js +1284 -611
- package/dist/js/reader.min.js +1 -1
- package/dist/js/reader.min.js.map +1 -1
- package/dist/package.json +9 -7
- package/package.json +8 -6
package/dist/css/elements.css
CHANGED
|
@@ -444,7 +444,7 @@ hr {
|
|
|
444
444
|
|
|
445
445
|
small,
|
|
446
446
|
.small {
|
|
447
|
-
font-size: 0.
|
|
447
|
+
font-size: 0.875rem;
|
|
448
448
|
font-weight: 400;
|
|
449
449
|
}
|
|
450
450
|
|
|
@@ -483,7 +483,7 @@ mark,
|
|
|
483
483
|
|
|
484
484
|
.blockquote-footer {
|
|
485
485
|
display: block;
|
|
486
|
-
font-size: 0.
|
|
486
|
+
font-size: 0.875rem;
|
|
487
487
|
color: #707070;
|
|
488
488
|
}
|
|
489
489
|
.blockquote-footer::before {
|
|
@@ -2256,7 +2256,7 @@ textarea.form-control, .selectize-control textarea.selectize-input {
|
|
|
2256
2256
|
display: none;
|
|
2257
2257
|
width: 100%;
|
|
2258
2258
|
margin-top: 0.55rem;
|
|
2259
|
-
font-size: 0.
|
|
2259
|
+
font-size: 0.875rem;
|
|
2260
2260
|
color: #7ed321;
|
|
2261
2261
|
}
|
|
2262
2262
|
|
|
@@ -2356,7 +2356,7 @@ textarea.form-control, .selectize-control textarea.selectize-input {
|
|
|
2356
2356
|
display: none;
|
|
2357
2357
|
width: 100%;
|
|
2358
2358
|
margin-top: 0.55rem;
|
|
2359
|
-
font-size: 0.
|
|
2359
|
+
font-size: 0.875rem;
|
|
2360
2360
|
color: #ff0000;
|
|
2361
2361
|
}
|
|
2362
2362
|
|
|
@@ -3087,9 +3087,9 @@ fieldset:disabled a.btn {
|
|
|
3087
3087
|
}
|
|
3088
3088
|
|
|
3089
3089
|
.btn-sm {
|
|
3090
|
-
padding: 0.
|
|
3091
|
-
font-size: 0.
|
|
3092
|
-
line-height: 1.
|
|
3090
|
+
padding: 0.375rem 0.75rem;
|
|
3091
|
+
font-size: 0.875rem;
|
|
3092
|
+
line-height: 1.5;
|
|
3093
3093
|
border-radius: 2px;
|
|
3094
3094
|
}
|
|
3095
3095
|
|
|
@@ -10786,21 +10786,12 @@ h3 {
|
|
|
10786
10786
|
}
|
|
10787
10787
|
}
|
|
10788
10788
|
body {
|
|
10789
|
-
font-size:
|
|
10789
|
+
font-size: 1rem;
|
|
10790
|
+
font-size: clamp(1rem, 0.9375rem + 0.25vw, 1.125rem);
|
|
10790
10791
|
-webkit-font-smoothing: antialiased;
|
|
10791
10792
|
-moz-osx-font-smoothing: grayscale;
|
|
10792
10793
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
|
|
10793
10794
|
}
|
|
10794
|
-
@media (max-width: 767.98px) {
|
|
10795
|
-
body {
|
|
10796
|
-
font-size: 1rem;
|
|
10797
|
-
}
|
|
10798
|
-
}
|
|
10799
|
-
@media (max-width: 575.98px) {
|
|
10800
|
-
body {
|
|
10801
|
-
font-size: 0.875rem;
|
|
10802
|
-
}
|
|
10803
|
-
}
|
|
10804
10795
|
|
|
10805
10796
|
.h1,
|
|
10806
10797
|
.h2,
|
|
@@ -10858,17 +10849,8 @@ h6,
|
|
|
10858
10849
|
}
|
|
10859
10850
|
|
|
10860
10851
|
.lead {
|
|
10861
|
-
font-size: 1.
|
|
10862
|
-
|
|
10863
|
-
@media (max-width: 991.98px) {
|
|
10864
|
-
.lead {
|
|
10865
|
-
font-size: 1.25rem;
|
|
10866
|
-
}
|
|
10867
|
-
}
|
|
10868
|
-
@media (max-width: 575.98px) {
|
|
10869
|
-
.lead {
|
|
10870
|
-
font-size: 1rem;
|
|
10871
|
-
}
|
|
10852
|
+
font-size: 1.125rem;
|
|
10853
|
+
font-size: clamp(1rem, 0.8125rem + 0.75vw, 1.375rem);
|
|
10872
10854
|
}
|
|
10873
10855
|
|
|
10874
10856
|
small {
|
|
@@ -11656,6 +11638,44 @@ body > .site > .main-container + .bg-gray-100 {
|
|
|
11656
11638
|
margin-top: 0.625em;
|
|
11657
11639
|
}
|
|
11658
11640
|
|
|
11641
|
+
.btn:disabled, .btn.disabled,
|
|
11642
|
+
button:disabled,
|
|
11643
|
+
button.disabled,
|
|
11644
|
+
button.btn:disabled,
|
|
11645
|
+
button.btn.disabled,
|
|
11646
|
+
input[type=button]:disabled,
|
|
11647
|
+
input[type=button].disabled {
|
|
11648
|
+
opacity: 1;
|
|
11649
|
+
}
|
|
11650
|
+
.btn:focus, .btn.focus-visible, .btn.focus,
|
|
11651
|
+
button:focus,
|
|
11652
|
+
button.focus-visible,
|
|
11653
|
+
button.focus,
|
|
11654
|
+
button.btn:focus,
|
|
11655
|
+
button.btn.focus-visible,
|
|
11656
|
+
button.btn.focus,
|
|
11657
|
+
input[type=button]:focus,
|
|
11658
|
+
input[type=button].focus-visible,
|
|
11659
|
+
input[type=button].focus {
|
|
11660
|
+
outline-width: 2px !important;
|
|
11661
|
+
outline-style: solid !important;
|
|
11662
|
+
outline-offset: 2px;
|
|
11663
|
+
}
|
|
11664
|
+
.btn:focus, .btn:focus-visible, .btn.focus,
|
|
11665
|
+
button:focus,
|
|
11666
|
+
button:focus-visible,
|
|
11667
|
+
button.focus,
|
|
11668
|
+
button.btn:focus,
|
|
11669
|
+
button.btn:focus-visible,
|
|
11670
|
+
button.btn.focus,
|
|
11671
|
+
input[type=button]:focus,
|
|
11672
|
+
input[type=button]:focus-visible,
|
|
11673
|
+
input[type=button].focus {
|
|
11674
|
+
outline-width: 2px !important;
|
|
11675
|
+
outline-style: solid !important;
|
|
11676
|
+
outline-offset: 2px;
|
|
11677
|
+
}
|
|
11678
|
+
|
|
11659
11679
|
.btn {
|
|
11660
11680
|
text-decoration: none;
|
|
11661
11681
|
white-space: normal;
|
|
@@ -11663,10 +11683,7 @@ body > .site > .main-container + .bg-gray-100 {
|
|
|
11663
11683
|
transition: background 0.15s, color 0.15s, border-color 0.15s;
|
|
11664
11684
|
}
|
|
11665
11685
|
.btn:before {
|
|
11666
|
-
|
|
11667
|
-
}
|
|
11668
|
-
.btn:disabled, .btn.disabled {
|
|
11669
|
-
opacity: 1;
|
|
11686
|
+
content: none;
|
|
11670
11687
|
}
|
|
11671
11688
|
|
|
11672
11689
|
.btn-primary {
|
|
@@ -11676,8 +11693,11 @@ body > .site > .main-container + .bg-gray-100 {
|
|
|
11676
11693
|
background: #b51f1f;
|
|
11677
11694
|
border-color: #b51f1f;
|
|
11678
11695
|
}
|
|
11679
|
-
.btn-primary:focus
|
|
11680
|
-
|
|
11696
|
+
.btn-primary:focus, .btn-primary.focus-visible, .btn-primary.focus {
|
|
11697
|
+
outline-color: #b51f1f !important;
|
|
11698
|
+
}
|
|
11699
|
+
.btn-primary:focus, .btn-primary:focus-visible, .btn-primary.focus {
|
|
11700
|
+
outline-color: #b51f1f !important;
|
|
11681
11701
|
}
|
|
11682
11702
|
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
|
|
11683
11703
|
background: #891818;
|
|
@@ -11713,8 +11733,11 @@ body > .site > .main-container + .bg-gray-100 {
|
|
|
11713
11733
|
background: transparent;
|
|
11714
11734
|
border-color: #e6e6e6;
|
|
11715
11735
|
}
|
|
11716
|
-
.btn-secondary:focus
|
|
11717
|
-
|
|
11736
|
+
.btn-secondary:focus, .btn-secondary.focus-visible, .btn-secondary.focus {
|
|
11737
|
+
outline-color: #707070 !important;
|
|
11738
|
+
}
|
|
11739
|
+
.btn-secondary:focus, .btn-secondary:focus-visible, .btn-secondary.focus {
|
|
11740
|
+
outline-color: #707070 !important;
|
|
11718
11741
|
}
|
|
11719
11742
|
.bg-dark .btn-secondary:focus, .bg-dark .btn-secondary.focus {
|
|
11720
11743
|
border-color: #e6e6e6;
|
|
@@ -11781,21 +11804,27 @@ a.tag:hover {
|
|
|
11781
11804
|
text-decoration: none;
|
|
11782
11805
|
background: #fff;
|
|
11783
11806
|
border: 1px solid #c1c1c1;
|
|
11807
|
+
font-size: inherit;
|
|
11784
11808
|
line-height: 1;
|
|
11785
11809
|
font-weight: 400;
|
|
11786
11810
|
color: #343a40;
|
|
11787
11811
|
border-radius: 2px;
|
|
11788
|
-
-webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
|
|
11789
|
-
transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
|
|
11812
|
+
-webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
11813
|
+
transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
11814
|
+
vertical-align: middle;
|
|
11790
11815
|
}
|
|
11791
11816
|
.tag .remove {
|
|
11792
11817
|
text-decoration: none;
|
|
11793
11818
|
float: right;
|
|
11819
|
+
padding: 0;
|
|
11820
|
+
border: 0;
|
|
11794
11821
|
font-size: 1.25em;
|
|
11795
11822
|
line-height: 0.5em;
|
|
11796
11823
|
margin-top: 0.2em;
|
|
11797
11824
|
margin-left: 0.3em;
|
|
11798
11825
|
color: inherit;
|
|
11826
|
+
-webkit-transition: all 0.2s ease-in-out;
|
|
11827
|
+
transition: all 0.2s ease-in-out;
|
|
11799
11828
|
}
|
|
11800
11829
|
.tag .remove:hover {
|
|
11801
11830
|
color: #ff0000;
|
|
@@ -11833,6 +11862,110 @@ a.tag:hover {
|
|
|
11833
11862
|
border-bottom: 1px solid #212121;
|
|
11834
11863
|
}
|
|
11835
11864
|
|
|
11865
|
+
a.tag > *,
|
|
11866
|
+
.btn.tag > *,
|
|
11867
|
+
button.tag > * {
|
|
11868
|
+
vertical-align: middle;
|
|
11869
|
+
}
|
|
11870
|
+
a.tag .remove,
|
|
11871
|
+
.btn.tag .remove,
|
|
11872
|
+
button.tag .remove {
|
|
11873
|
+
width: 1.25rem;
|
|
11874
|
+
height: 1.25rem;
|
|
11875
|
+
margin-top: -1px;
|
|
11876
|
+
margin-bottom: -1px;
|
|
11877
|
+
margin-right: -2px;
|
|
11878
|
+
background: #e6e6e6;
|
|
11879
|
+
border-radius: 2px;
|
|
11880
|
+
line-height: 1.3rem;
|
|
11881
|
+
text-align: center;
|
|
11882
|
+
}
|
|
11883
|
+
a.tag:hover, a.tag:focus,
|
|
11884
|
+
.btn.tag:hover,
|
|
11885
|
+
.btn.tag:focus,
|
|
11886
|
+
button.tag:hover,
|
|
11887
|
+
button.tag:focus {
|
|
11888
|
+
border-color: #212121;
|
|
11889
|
+
}
|
|
11890
|
+
a.tag:hover .remove, a.tag:focus .remove,
|
|
11891
|
+
.btn.tag:hover .remove,
|
|
11892
|
+
.btn.tag:focus .remove,
|
|
11893
|
+
button.tag:hover .remove,
|
|
11894
|
+
button.tag:focus .remove {
|
|
11895
|
+
background: #ff0000;
|
|
11896
|
+
color: #fff;
|
|
11897
|
+
}
|
|
11898
|
+
a.tag:focus, a.tag.focus-visible, a.tag.focus,
|
|
11899
|
+
.btn.tag:focus,
|
|
11900
|
+
.btn.tag.focus-visible,
|
|
11901
|
+
.btn.tag.focus,
|
|
11902
|
+
button.tag:focus,
|
|
11903
|
+
button.tag.focus-visible,
|
|
11904
|
+
button.tag.focus {
|
|
11905
|
+
outline: solid 2px #ff0000 !important;
|
|
11906
|
+
outline-offset: 2px;
|
|
11907
|
+
}
|
|
11908
|
+
a.tag:focus, a.tag:focus-visible, a.tag.focus,
|
|
11909
|
+
.btn.tag:focus,
|
|
11910
|
+
.btn.tag:focus-visible,
|
|
11911
|
+
.btn.tag.focus,
|
|
11912
|
+
button.tag:focus,
|
|
11913
|
+
button.tag:focus-visible,
|
|
11914
|
+
button.tag.focus {
|
|
11915
|
+
outline: solid 2px #ff0000 !important;
|
|
11916
|
+
outline-offset: 2px;
|
|
11917
|
+
}
|
|
11918
|
+
a.tag.tag-secondary:focus, a.tag.tag-secondary.focus-visible, a.tag.tag-secondary.focus, a.tag.tag-plain:focus, a.tag.tag-plain.focus-visible, a.tag.tag-plain.focus,
|
|
11919
|
+
.btn.tag.tag-secondary:focus,
|
|
11920
|
+
.btn.tag.tag-secondary.focus-visible,
|
|
11921
|
+
.btn.tag.tag-secondary.focus,
|
|
11922
|
+
.btn.tag.tag-plain:focus,
|
|
11923
|
+
.btn.tag.tag-plain.focus-visible,
|
|
11924
|
+
.btn.tag.tag-plain.focus,
|
|
11925
|
+
button.tag.tag-secondary:focus,
|
|
11926
|
+
button.tag.tag-secondary.focus-visible,
|
|
11927
|
+
button.tag.tag-secondary.focus,
|
|
11928
|
+
button.tag.tag-plain:focus,
|
|
11929
|
+
button.tag.tag-plain.focus-visible,
|
|
11930
|
+
button.tag.tag-plain.focus {
|
|
11931
|
+
outline-color: #707070 !important;
|
|
11932
|
+
}
|
|
11933
|
+
a.tag.tag-secondary:focus, a.tag.tag-secondary:focus-visible, a.tag.tag-secondary.focus, a.tag.tag-plain:focus, a.tag.tag-plain:focus-visible, a.tag.tag-plain.focus,
|
|
11934
|
+
.btn.tag.tag-secondary:focus,
|
|
11935
|
+
.btn.tag.tag-secondary:focus-visible,
|
|
11936
|
+
.btn.tag.tag-secondary.focus,
|
|
11937
|
+
.btn.tag.tag-plain:focus,
|
|
11938
|
+
.btn.tag.tag-plain:focus-visible,
|
|
11939
|
+
.btn.tag.tag-plain.focus,
|
|
11940
|
+
button.tag.tag-secondary:focus,
|
|
11941
|
+
button.tag.tag-secondary:focus-visible,
|
|
11942
|
+
button.tag.tag-secondary.focus,
|
|
11943
|
+
button.tag.tag-plain:focus,
|
|
11944
|
+
button.tag.tag-plain:focus-visible,
|
|
11945
|
+
button.tag.tag-plain.focus {
|
|
11946
|
+
outline-color: #707070 !important;
|
|
11947
|
+
}
|
|
11948
|
+
a.tag.tag-plain .remove,
|
|
11949
|
+
.btn.tag.tag-plain .remove,
|
|
11950
|
+
button.tag.tag-plain .remove {
|
|
11951
|
+
color: #212121;
|
|
11952
|
+
}
|
|
11953
|
+
a.tag.tag-plain:hover, a.tag.tag-plain:focus,
|
|
11954
|
+
.btn.tag.tag-plain:hover,
|
|
11955
|
+
.btn.tag.tag-plain:focus,
|
|
11956
|
+
button.tag.tag-plain:hover,
|
|
11957
|
+
button.tag.tag-plain:focus {
|
|
11958
|
+
border-color: #212121;
|
|
11959
|
+
}
|
|
11960
|
+
a.tag.tag-plain:hover .remove, a.tag.tag-plain:focus .remove,
|
|
11961
|
+
.btn.tag.tag-plain:hover .remove,
|
|
11962
|
+
.btn.tag.tag-plain:focus .remove,
|
|
11963
|
+
button.tag.tag-plain:hover .remove,
|
|
11964
|
+
button.tag.tag-plain:focus .remove {
|
|
11965
|
+
background: #fff;
|
|
11966
|
+
color: #ff0000;
|
|
11967
|
+
}
|
|
11968
|
+
|
|
11836
11969
|
.tag-group {
|
|
11837
11970
|
padding: 1em;
|
|
11838
11971
|
background: #f2f2f2;
|
|
@@ -11857,6 +11990,13 @@ a.tag:hover {
|
|
|
11857
11990
|
border: 1px solid #c1c1c1;
|
|
11858
11991
|
}
|
|
11859
11992
|
|
|
11993
|
+
.btn.tag.tag-sm .remove,
|
|
11994
|
+
.tag-input-sm .tag.btn .remove {
|
|
11995
|
+
width: 1rem;
|
|
11996
|
+
height: 1rem;
|
|
11997
|
+
line-height: 1rem;
|
|
11998
|
+
}
|
|
11999
|
+
|
|
11860
12000
|
.selectize-control {
|
|
11861
12001
|
cursor: text;
|
|
11862
12002
|
}
|
|
@@ -12096,7 +12236,9 @@ a.tag:hover {
|
|
|
12096
12236
|
transition: opacity 0.3s, -webkit-transform 0.2s;
|
|
12097
12237
|
transition: opacity 0.3s, transform 0.2s;
|
|
12098
12238
|
transition: opacity 0.3s, transform 0.2s, -webkit-transform 0.2s;
|
|
12099
|
-
z-index: -
|
|
12239
|
+
/* z-index: $zindex-background;
|
|
12240
|
+
with z-index:-1 the pseudo element is hidden if the section has a background color - ak*/
|
|
12241
|
+
z-index: 0;
|
|
12100
12242
|
}
|
|
12101
12243
|
.collapse-title:focus {
|
|
12102
12244
|
outline: none;
|
|
@@ -12171,6 +12313,14 @@ a.tag:hover {
|
|
|
12171
12313
|
margin-bottom: 0;
|
|
12172
12314
|
}
|
|
12173
12315
|
|
|
12316
|
+
button.collapse-title:focus, button.collapse-title.focus-visible {
|
|
12317
|
+
outline: 0 !important;
|
|
12318
|
+
}
|
|
12319
|
+
|
|
12320
|
+
button.collapse-title:focus, button.collapse-title:focus-visible {
|
|
12321
|
+
outline: 0 !important;
|
|
12322
|
+
}
|
|
12323
|
+
|
|
12174
12324
|
.collapse-item:after {
|
|
12175
12325
|
content: "";
|
|
12176
12326
|
display: block;
|
|
@@ -12427,7 +12577,19 @@ header.collapse-title + .collapse-item:before {
|
|
|
12427
12577
|
padding: 0 2.1em 0 1.1em;
|
|
12428
12578
|
-webkit-transform: translateY(-50%);
|
|
12429
12579
|
transform: translateY(-50%);
|
|
12580
|
+
-webkit-transition: all 0.3s ease-in-out;
|
|
12581
|
+
transition: all 0.3s ease-in-out;
|
|
12430
12582
|
text-decoration: underline;
|
|
12583
|
+
text-decoration-thickness: 0.08em;
|
|
12584
|
+
text-underline-offset: 2px;
|
|
12585
|
+
}
|
|
12586
|
+
.drawer .drawer-link.focus-visible .text {
|
|
12587
|
+
text-decoration-thickness: 0.2em;
|
|
12588
|
+
text-underline-offset: 4px;
|
|
12589
|
+
}
|
|
12590
|
+
.drawer .drawer-link:focus-visible .text {
|
|
12591
|
+
text-decoration-thickness: 0.2em;
|
|
12592
|
+
text-underline-offset: 4px;
|
|
12431
12593
|
}
|
|
12432
12594
|
.drawer .drawer-toggle {
|
|
12433
12595
|
display: block;
|
|
@@ -12455,10 +12617,24 @@ header.collapse-title + .collapse-item:before {
|
|
|
12455
12617
|
.drawer .drawer-toggle:hover {
|
|
12456
12618
|
background: #b51f1f;
|
|
12457
12619
|
}
|
|
12620
|
+
.drawer .drawer-toggle:focus, .drawer .drawer-toggle.focus-visible {
|
|
12621
|
+
outline: 0 !important;
|
|
12622
|
+
}
|
|
12623
|
+
.drawer .drawer-toggle:focus, .drawer .drawer-toggle:focus-visible {
|
|
12624
|
+
outline: 0 !important;
|
|
12625
|
+
}
|
|
12458
12626
|
.drawer.open .drawer-toggle .icon {
|
|
12459
12627
|
-webkit-transform: rotate(180deg) translateY(50%);
|
|
12460
12628
|
transform: rotate(180deg) translateY(50%);
|
|
12461
12629
|
}
|
|
12630
|
+
.drawer[focus-within] {
|
|
12631
|
+
outline: 2px solid #b51f1f;
|
|
12632
|
+
outline-offset: 2px;
|
|
12633
|
+
}
|
|
12634
|
+
.drawer:focus-within {
|
|
12635
|
+
outline: 2px solid #b51f1f;
|
|
12636
|
+
outline-offset: 2px;
|
|
12637
|
+
}
|
|
12462
12638
|
|
|
12463
12639
|
.icon {
|
|
12464
12640
|
display: -webkit-inline-box;
|
|
@@ -12727,12 +12903,11 @@ header.collapse-title + .collapse-item:before {
|
|
|
12727
12903
|
.nav-lang .dropdown-toggle,
|
|
12728
12904
|
.nav-lang .dropdown-item {
|
|
12729
12905
|
width: auto;
|
|
12730
|
-
height: 2.
|
|
12731
|
-
padding: 0.
|
|
12906
|
+
height: 2.5rem;
|
|
12907
|
+
padding: 0.5rem 1.5rem 0.5rem 0.625rem;
|
|
12732
12908
|
}
|
|
12733
12909
|
.nav-lang .icon {
|
|
12734
|
-
|
|
12735
|
-
transform: translateY(0.1rem);
|
|
12910
|
+
display: none;
|
|
12736
12911
|
}
|
|
12737
12912
|
}
|
|
12738
12913
|
.nav-toggle-mobile {
|
|
@@ -12747,13 +12922,18 @@ header.collapse-title + .collapse-item:before {
|
|
|
12747
12922
|
-ms-flex-align: baseline;
|
|
12748
12923
|
align-items: baseline;
|
|
12749
12924
|
margin: 0;
|
|
12750
|
-
padding: 0.
|
|
12925
|
+
padding: 0.8125rem 0.875rem;
|
|
12751
12926
|
font-size: 1rem;
|
|
12752
12927
|
font-weight: bold !important;
|
|
12753
12928
|
}
|
|
12754
12929
|
@media (min-width: 576px) {
|
|
12755
12930
|
.nav-toggle-mobile {
|
|
12756
|
-
padding: 0.
|
|
12931
|
+
padding: 0.5rem 0.9375rem;
|
|
12932
|
+
}
|
|
12933
|
+
}
|
|
12934
|
+
@media (min-width: 768px) {
|
|
12935
|
+
.nav-toggle-mobile {
|
|
12936
|
+
padding: 0.625rem 0.9375rem;
|
|
12757
12937
|
}
|
|
12758
12938
|
}
|
|
12759
12939
|
@media (max-width: 575.98px) {
|
|
@@ -13468,6 +13648,26 @@ a.social-icon:hover, a.social-icon:focus {
|
|
|
13468
13648
|
opacity: 0;
|
|
13469
13649
|
z-index: -1;
|
|
13470
13650
|
}
|
|
13651
|
+
.upload-input:focus + label.btn, .upload-input.focus-visible + label.btn {
|
|
13652
|
+
outline: 2px solid;
|
|
13653
|
+
outline-offset: 2px;
|
|
13654
|
+
}
|
|
13655
|
+
.upload-input:focus + label.btn, .upload-input:focus-visible + label.btn {
|
|
13656
|
+
outline: 2px solid;
|
|
13657
|
+
outline-offset: 2px;
|
|
13658
|
+
}
|
|
13659
|
+
.upload-input:focus + label.btn-primary, .upload-input.focus-visible + label.btn-primary {
|
|
13660
|
+
outline-color: #b51f1f;
|
|
13661
|
+
}
|
|
13662
|
+
.upload-input:focus + label.btn-primary, .upload-input:focus-visible + label.btn-primary {
|
|
13663
|
+
outline-color: #b51f1f;
|
|
13664
|
+
}
|
|
13665
|
+
.upload-input:focus + label.btn-secondary, .upload-input.focus-visible + label.btn-secondary {
|
|
13666
|
+
outline-color: #707070;
|
|
13667
|
+
}
|
|
13668
|
+
.upload-input:focus + label.btn-secondary, .upload-input:focus-visible + label.btn-secondary {
|
|
13669
|
+
outline-color: #707070;
|
|
13670
|
+
}
|
|
13471
13671
|
|
|
13472
13672
|
.dropdown-item {
|
|
13473
13673
|
text-decoration: none;
|
|
@@ -13476,6 +13676,26 @@ a.social-icon:hover, a.social-icon:focus {
|
|
|
13476
13676
|
background: #ff0000;
|
|
13477
13677
|
color: #fff !important;
|
|
13478
13678
|
}
|
|
13679
|
+
.dropdown-item .icon {
|
|
13680
|
+
margin-right: 0.25rem;
|
|
13681
|
+
vertical-align: middle;
|
|
13682
|
+
}
|
|
13683
|
+
.dropdown-item .icon + * {
|
|
13684
|
+
vertical-align: middle;
|
|
13685
|
+
}
|
|
13686
|
+
|
|
13687
|
+
li.dropdown-item:before {
|
|
13688
|
+
content: none;
|
|
13689
|
+
}
|
|
13690
|
+
|
|
13691
|
+
.dropdown .dropdown-toggle:after {
|
|
13692
|
+
-webkit-transition: all 0.3s ease-in-out;
|
|
13693
|
+
transition: all 0.3s ease-in-out;
|
|
13694
|
+
}
|
|
13695
|
+
.dropdown.show .dropdown-toggle:after {
|
|
13696
|
+
-webkit-transform: rotate(180deg);
|
|
13697
|
+
transform: rotate(180deg);
|
|
13698
|
+
}
|
|
13479
13699
|
|
|
13480
13700
|
.nav-toggle {
|
|
13481
13701
|
display: none;
|
|
@@ -13841,6 +14061,140 @@ figcaption {
|
|
|
13841
14061
|
animation: rotation 1s linear infinite;
|
|
13842
14062
|
}
|
|
13843
14063
|
|
|
14064
|
+
.user-dropdown .btn {
|
|
14065
|
+
display: -webkit-box;
|
|
14066
|
+
display: -ms-flexbox;
|
|
14067
|
+
display: flex;
|
|
14068
|
+
-webkit-box-align: center;
|
|
14069
|
+
-ms-flex-align: center;
|
|
14070
|
+
align-items: center;
|
|
14071
|
+
padding: 0.375rem 0.75rem;
|
|
14072
|
+
border: 0;
|
|
14073
|
+
}
|
|
14074
|
+
.user-dropdown .btn .user-avatar {
|
|
14075
|
+
--avatar-size: 2.5rem;
|
|
14076
|
+
-ms-flex-preferred-size: var(--avatar-size);
|
|
14077
|
+
flex-basis: var(--avatar-size);
|
|
14078
|
+
width: var(--avatar-size);
|
|
14079
|
+
}
|
|
14080
|
+
@media (min-width: 576px) {
|
|
14081
|
+
.user-dropdown .btn .user-avatar {
|
|
14082
|
+
--avatar-size: 2.625rem;
|
|
14083
|
+
}
|
|
14084
|
+
}
|
|
14085
|
+
@media (min-width: 768px) {
|
|
14086
|
+
.user-dropdown .btn .user-avatar {
|
|
14087
|
+
--avatar-size: 2.875rem;
|
|
14088
|
+
}
|
|
14089
|
+
}
|
|
14090
|
+
.user-dropdown .btn p {
|
|
14091
|
+
margin: 0 0.5rem 0 1rem;
|
|
14092
|
+
}
|
|
14093
|
+
|
|
14094
|
+
.header .nav-user {
|
|
14095
|
+
margin-left: auto;
|
|
14096
|
+
}
|
|
14097
|
+
.header .nav-user + .nav-lang {
|
|
14098
|
+
margin-left: 0 !important;
|
|
14099
|
+
}
|
|
14100
|
+
|
|
14101
|
+
.nav-user.user-login {
|
|
14102
|
+
position: relative;
|
|
14103
|
+
padding-left: 1.5rem;
|
|
14104
|
+
}
|
|
14105
|
+
.nav-user.user-login .icon {
|
|
14106
|
+
position: absolute;
|
|
14107
|
+
top: 4px;
|
|
14108
|
+
left: 0;
|
|
14109
|
+
margin-right: 0.25rem;
|
|
14110
|
+
}
|
|
14111
|
+
|
|
14112
|
+
@media (max-width: 1199.98px) {
|
|
14113
|
+
.header .nav-user {
|
|
14114
|
+
margin-left: 1rem;
|
|
14115
|
+
margin-right: 1rem;
|
|
14116
|
+
}
|
|
14117
|
+
}
|
|
14118
|
+
@media (max-width: 767.98px) {
|
|
14119
|
+
.header .nav-user-login {
|
|
14120
|
+
padding: 0;
|
|
14121
|
+
}
|
|
14122
|
+
.header .nav-user-login .user-login-link {
|
|
14123
|
+
padding: 0.5em;
|
|
14124
|
+
}
|
|
14125
|
+
.header .nav-user-login .label {
|
|
14126
|
+
position: absolute;
|
|
14127
|
+
width: 1px;
|
|
14128
|
+
height: 1px;
|
|
14129
|
+
padding: 0;
|
|
14130
|
+
margin: -1px;
|
|
14131
|
+
overflow: hidden;
|
|
14132
|
+
clip: rect(0, 0, 0, 0);
|
|
14133
|
+
white-space: nowrap;
|
|
14134
|
+
border: 0;
|
|
14135
|
+
}
|
|
14136
|
+
.header .nav-user-login .icon {
|
|
14137
|
+
position: static;
|
|
14138
|
+
width: 1.25rem;
|
|
14139
|
+
height: 1.25rem;
|
|
14140
|
+
margin: 0;
|
|
14141
|
+
}
|
|
14142
|
+
.header .nav-user {
|
|
14143
|
+
margin-left: 0.5rem;
|
|
14144
|
+
margin-right: 0.5rem;
|
|
14145
|
+
}
|
|
14146
|
+
.header .nav-user + .nav-lang-short > ul {
|
|
14147
|
+
padding-left: 0 !important;
|
|
14148
|
+
}
|
|
14149
|
+
.header .nav-user .btn {
|
|
14150
|
+
padding: 0.375rem;
|
|
14151
|
+
}
|
|
14152
|
+
.header .nav-user:not(.show) .btn {
|
|
14153
|
+
border-radius: 50%;
|
|
14154
|
+
}
|
|
14155
|
+
.header .nav-user:not(.show) .btn:after {
|
|
14156
|
+
content: none;
|
|
14157
|
+
}
|
|
14158
|
+
.header .nav-user:not(.show) .user-name {
|
|
14159
|
+
position: absolute;
|
|
14160
|
+
width: 1px;
|
|
14161
|
+
height: 1px;
|
|
14162
|
+
padding: 0;
|
|
14163
|
+
margin: -1px;
|
|
14164
|
+
overflow: hidden;
|
|
14165
|
+
clip: rect(0, 0, 0, 0);
|
|
14166
|
+
white-space: nowrap;
|
|
14167
|
+
border: 0;
|
|
14168
|
+
}
|
|
14169
|
+
.header .nav-user.show {
|
|
14170
|
+
position: fixed;
|
|
14171
|
+
top: 0.625rem;
|
|
14172
|
+
right: 0.75rem;
|
|
14173
|
+
left: 0.75rem;
|
|
14174
|
+
margin: 0;
|
|
14175
|
+
background: white;
|
|
14176
|
+
z-index: 1199;
|
|
14177
|
+
}
|
|
14178
|
+
.header .nav-user.show .btn {
|
|
14179
|
+
width: 100%;
|
|
14180
|
+
padding-left: 0.68rem;
|
|
14181
|
+
padding-right: 0.68rem;
|
|
14182
|
+
border: 2px solid #707070;
|
|
14183
|
+
border-bottom: 0;
|
|
14184
|
+
border-radius: 2px 2px 0 0;
|
|
14185
|
+
}
|
|
14186
|
+
.header .nav-user.show .btn:after {
|
|
14187
|
+
margin-left: auto;
|
|
14188
|
+
}
|
|
14189
|
+
.header .nav-user.show .dropdown-menu {
|
|
14190
|
+
top: -2px !important;
|
|
14191
|
+
left: 0 !important;
|
|
14192
|
+
width: 100%;
|
|
14193
|
+
border: 2px solid #707070;
|
|
14194
|
+
border-top: 0;
|
|
14195
|
+
border-radius: 0 0 2px 2px;
|
|
14196
|
+
}
|
|
14197
|
+
}
|
|
13844
14198
|
.search {
|
|
13845
14199
|
-webkit-box-flex: 0;
|
|
13846
14200
|
-ms-flex: 0 0 auto;
|
|
@@ -15996,6 +16350,9 @@ ol.flickity-page-dots li:before {
|
|
|
15996
16350
|
.breadcrumb-item a:hover {
|
|
15997
16351
|
color: #212121;
|
|
15998
16352
|
}
|
|
16353
|
+
.breadcrumb-item .tag {
|
|
16354
|
+
vertical-align: baseline;
|
|
16355
|
+
}
|
|
15999
16356
|
.breadcrumb-item .icon {
|
|
16000
16357
|
top: -0.08em;
|
|
16001
16358
|
font-size: 0.86em;
|
|
@@ -17348,9 +17705,6 @@ ol.flickity-page-dots li:before {
|
|
|
17348
17705
|
-webkit-transition: padding 0.15s;
|
|
17349
17706
|
transition: padding 0.15s;
|
|
17350
17707
|
}
|
|
17351
|
-
.fullwidth-teaser-header .btn:before {
|
|
17352
|
-
border: none;
|
|
17353
|
-
}
|
|
17354
17708
|
.fullwidth-teaser-header .btn:hover, .fullwidth-teaser-header .btn:focus {
|
|
17355
17709
|
background: #b30000;
|
|
17356
17710
|
color: #fff;
|
|
@@ -17364,6 +17718,20 @@ ol.flickity-page-dots li:before {
|
|
|
17364
17718
|
background: none;
|
|
17365
17719
|
border-top-color: #b30000;
|
|
17366
17720
|
}
|
|
17721
|
+
.fullwidth-teaser-header .btn:active:after {
|
|
17722
|
+
border-top-color: #891818;
|
|
17723
|
+
}
|
|
17724
|
+
.fullwidth-teaser-header .btn:focus {
|
|
17725
|
+
outline: 0 !important;
|
|
17726
|
+
}
|
|
17727
|
+
.fullwidth-teaser-header .btn.focus-visible {
|
|
17728
|
+
outline: 2px solid #fff !important;
|
|
17729
|
+
outline-offset: -4px !important;
|
|
17730
|
+
}
|
|
17731
|
+
.fullwidth-teaser-header .btn:focus-visible {
|
|
17732
|
+
outline: 2px solid #fff !important;
|
|
17733
|
+
outline-offset: -4px !important;
|
|
17734
|
+
}
|
|
17367
17735
|
|
|
17368
17736
|
.fullwidth-teaser-content {
|
|
17369
17737
|
padding: 1rem 0 0;
|
|
@@ -18537,12 +18905,12 @@ a.nav-arrow:hover .icon-container {
|
|
|
18537
18905
|
align-items: center;
|
|
18538
18906
|
}
|
|
18539
18907
|
@media (max-width: 767.98px) {
|
|
18540
|
-
.header-light .header-light-content .nav-toggle-mobile {
|
|
18908
|
+
.header-light .header-light-content :not(.nav-lang.dropdown):not(.nav-user) + .nav-toggle-mobile {
|
|
18541
18909
|
padding: 0.5rem 0.9rem;
|
|
18542
18910
|
}
|
|
18543
18911
|
}
|
|
18544
18912
|
@media (max-width: 575.98px) {
|
|
18545
|
-
.header-light .header-light-content .nav-toggle-mobile {
|
|
18913
|
+
.header-light .header-light-content :not(.nav-lang.dropdown):not(.nav-user) + .nav-toggle-mobile {
|
|
18546
18914
|
padding: 0.625rem 0.9rem;
|
|
18547
18915
|
}
|
|
18548
18916
|
}
|
|
@@ -19233,6 +19601,10 @@ a.cc-link {
|
|
|
19233
19601
|
color: #ff0000;
|
|
19234
19602
|
}
|
|
19235
19603
|
|
|
19604
|
+
.event-info p {
|
|
19605
|
+
margin-bottom: 0;
|
|
19606
|
+
}
|
|
19607
|
+
|
|
19236
19608
|
.list-events .list-group-teaser-content .card-title {
|
|
19237
19609
|
max-width: 660px;
|
|
19238
19610
|
}
|