@gemeentenijmegen/components-css 0.0.1-alpha.2 → 0.0.1-alpha.20
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/breadcrumb/index.scss +116 -0
- package/card/index.scss +145 -0
- package/dist/header.css +155 -0
- package/dist/index.min.css +120 -2
- package/footer/index.scss +115 -0
- package/header/_mixin.scss +27 -0
- package/header/index.scss +161 -0
- package/index.scss +9 -0
- package/link-list/_mixin.scss +4 -1
- package/link-list/index.scss +9 -4
- package/mega-menu/index.scss +61 -0
- package/mobile-menu/_mixin.scss +11 -0
- package/mobile-menu/index.scss +176 -0
- package/ordered-list/index.scss +8 -0
- package/package.json +7 -3
- package/rollup.config.mjs +26 -0
- package/toolbar-button/_mixin.scss +21 -0
- package/toolbar-button/index.js +29 -0
- package/toolbar-button/index.scss +51 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
/* stylelint-disable no-descending-specificity */
|
|
2
|
+
|
|
3
|
+
@import "~@utrecht/link-css/src/mixin";
|
|
4
|
+
@import "~@utrecht/focus-ring-css/src/mixin";
|
|
5
|
+
|
|
6
|
+
.nijmegen-breadcrumb {
|
|
7
|
+
font-family: var(--nijmegen-breadcrumb-nav-font-family);
|
|
8
|
+
font-size: var(--nijmegen-breadcrumb-nav-font-size);
|
|
9
|
+
font-weight: var(--nijmegen-breadcrumb-nav-font-weight);
|
|
10
|
+
line-height: var(--nijmegen-breadcrumb-nav-line-height);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.nijmegen-breadcrumb__list {
|
|
14
|
+
block-size: 100%;
|
|
15
|
+
display: flex;
|
|
16
|
+
gap: var(--nijmegen-breadcrumb-nav-column-gap);
|
|
17
|
+
margin-block-end: 0;
|
|
18
|
+
margin-block-start: 0;
|
|
19
|
+
|
|
20
|
+
@media (width <=576px) {
|
|
21
|
+
display: none;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
ol.nijmegen-breadcrumb__list {
|
|
26
|
+
list-style: none;
|
|
27
|
+
padding-inline-start: 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.nijmegen-breadcrumb__item {
|
|
31
|
+
align-items: center;
|
|
32
|
+
display: flex;
|
|
33
|
+
|
|
34
|
+
&:not(:last-child) {
|
|
35
|
+
&::after {
|
|
36
|
+
background-color: var(--nijmegen-breadcrumb-nav-separator-color);
|
|
37
|
+
content: "";
|
|
38
|
+
display: inline-block;
|
|
39
|
+
height: var(--nijmegen-breadcrumb-nav-separator-size); /* stylelint-disable-line property-disallowed-list */
|
|
40
|
+
margin-inline-start: var(--nijmegen-breadcrumb-nav-column-gap);
|
|
41
|
+
mask-image: var(
|
|
42
|
+
--nijmegen-header-item-open-icon-image,
|
|
43
|
+
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-right"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 6l6 6l-6 6" /></svg>')
|
|
44
|
+
);
|
|
45
|
+
mask-position: center;
|
|
46
|
+
mask-repeat: no-repeat;
|
|
47
|
+
mask-size: 100%;
|
|
48
|
+
width: var(--nijmegen-breadcrumb-nav-separator-size); /* stylelint-disable-line property-disallowed-list */
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.nijmegen-breadcrumb__link {
|
|
54
|
+
@include utrecht-link;
|
|
55
|
+
|
|
56
|
+
padding-block-end: var(--nijmegen-breadcrumb-nav-link-padding-block-end);
|
|
57
|
+
padding-block-start: var(--nijmegen-breadcrumb-nav-link-padding-block-start);
|
|
58
|
+
padding-inline-end: var(--nijmegen-breadcrumb-nav-link-padding-inline-end);
|
|
59
|
+
padding-inline-start: var(--nijmegen-breadcrumb-nav-link-padding-inline-start);
|
|
60
|
+
text-decoration: var(--nijmegen-breadcrumb-nav-link-text-decoration);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.nijmegen-breadcrumb__link--mobile {
|
|
64
|
+
display: inline-flex;
|
|
65
|
+
gap: var(--nijmegen-breadcrumb-nav-link-icon-column-gap);
|
|
66
|
+
|
|
67
|
+
@media (width >=576px) {
|
|
68
|
+
display: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&::before {
|
|
72
|
+
background-color: currentColor;
|
|
73
|
+
content: "";
|
|
74
|
+
display: inline-block;
|
|
75
|
+
/* stylelint-disable-next-line property-disallowed-list */
|
|
76
|
+
height: var(--nijmegen-breadcrumb-nav-link-icon-size, 1.5rem);
|
|
77
|
+
mask-image: var(
|
|
78
|
+
--nijmegen-breadcrumb-nav-link-icon-image,
|
|
79
|
+
url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-arrow-left"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l14 0" /><path d="M5 12l6 6" /><path d="M5 12l6 -6" /></svg>')
|
|
80
|
+
);
|
|
81
|
+
mask-position: center;
|
|
82
|
+
mask-repeat: no-repeat;
|
|
83
|
+
mask-size: 100%;
|
|
84
|
+
width: var(--nijmegen-breadcrumb-nav-link-icon-size, 1.5rem); /* stylelint-disable-line property-disallowed-list */
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.nijmegen-breadcrumb__link--disabled {
|
|
89
|
+
color: var(--nijmegen-breadcrumb-nav-link-current-color);
|
|
90
|
+
cursor: none;
|
|
91
|
+
pointer-events: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.nijmegen-breadcrumb__link--active,
|
|
95
|
+
.nijmegen-breadcrumb__link:active {
|
|
96
|
+
color: var(--nijmegen-breadcrumb-nav-link-active-color);
|
|
97
|
+
text-decoration: var(--nijmegen-breadcrumb-nav-link-active-text-decoration);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.nijmegen-breadcrumb__link--hover,
|
|
101
|
+
.nijmegen-breadcrumb__link:hover {
|
|
102
|
+
color: var(--nijmegen-breadcrumb-nav-link-hover-color);
|
|
103
|
+
text-decoration: var(--nijmegen-breadcrumb-nav-link-hover-text-decoration);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.nijmegen-breadcrumb__link--focus,
|
|
107
|
+
.nijmegen-breadcrumb__link:has(:focus) {
|
|
108
|
+
@include utrecht-link--focus;
|
|
109
|
+
@include utrecht-focus-ring;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.nijmegen-breadcrumb__link--focus-visible,
|
|
113
|
+
.nijmegen-breadcrumb__link:focus-visible {
|
|
114
|
+
@include utrecht-link--focus;
|
|
115
|
+
@include utrecht-focus-ring;
|
|
116
|
+
}
|
package/card/index.scss
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
/* stylelint-disable no-descending-specificity */
|
|
2
|
+
|
|
3
|
+
@import "~@utrecht/link-css/src/mixin";
|
|
4
|
+
@import "~@utrecht/focus-ring-css/src/mixin";
|
|
5
|
+
@import "~@utrecht/unordered-list-css/src/mixin";
|
|
6
|
+
|
|
7
|
+
.nijmegen-card {
|
|
8
|
+
background-color: var(--nijmegen-card-background-color);
|
|
9
|
+
border-color: var(--nijmegen-card-border-color);
|
|
10
|
+
border-radius: var(--nijmegen-card-border-radius);
|
|
11
|
+
border-style: solid;
|
|
12
|
+
border-width: var(--nijmegen-card-border-width);
|
|
13
|
+
color: var(--nijmegen-card-color);
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
max-width: var(--nijmegen-card-max-width, 328px); /* stylelint-disable-line property-disallowed-list */
|
|
17
|
+
position: relative;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.nijmegen-card__link {
|
|
21
|
+
color: inherit;
|
|
22
|
+
text-decoration: var(--nijmegen-card-heading-text-decoration);
|
|
23
|
+
|
|
24
|
+
&:focus-visible {
|
|
25
|
+
outline: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&::after {
|
|
29
|
+
content: "";
|
|
30
|
+
inset: 0;
|
|
31
|
+
position: absolute;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.nijmegen-card__figure {
|
|
36
|
+
aspect-ratio: 12 / 9;
|
|
37
|
+
border-radius: var(--nijmegen-card-border-radius) var(--nijmegen-card-border-radius) 0 0;
|
|
38
|
+
display: inline-flex;
|
|
39
|
+
margin: 0; /* stylelint-disable-line property-disallowed-list */
|
|
40
|
+
order: -1;
|
|
41
|
+
overflow: hidden;
|
|
42
|
+
|
|
43
|
+
img {
|
|
44
|
+
height: 100%; /* stylelint-disable-line property-disallowed-list */
|
|
45
|
+
object-fit: cover;
|
|
46
|
+
object-position: center center;
|
|
47
|
+
width: 100%; /* stylelint-disable-line property-disallowed-list */
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.nijmegen-card__inner {
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-direction: column;
|
|
54
|
+
gap: var(--nijmegen-card-content-row-gap);
|
|
55
|
+
padding-block-end: var(--nijmegen-card-padding-block-end);
|
|
56
|
+
padding-block-start: var(--nijmegen-card-padding-block-start);
|
|
57
|
+
padding-inline-end: var(--nijmegen-card-padding-inline-end);
|
|
58
|
+
padding-inline-start: var(--nijmegen-card-padding-inline-start);
|
|
59
|
+
|
|
60
|
+
ul {
|
|
61
|
+
@include utrecht-unordered-list;
|
|
62
|
+
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
gap: var(--nijmegen-card-metadata-column-gap);
|
|
66
|
+
padding-inline-start: 0;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.nijmegen-card__meta-item {
|
|
71
|
+
align-items: center;
|
|
72
|
+
display: flex;
|
|
73
|
+
gap: var(--nijmegen-card-metadata-column-gap);
|
|
74
|
+
|
|
75
|
+
svg {
|
|
76
|
+
block-size: var(--nijmegen-card-icon-size);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.nijmegen-card__footer {
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-direction: row-reverse;
|
|
83
|
+
justify-content: space-between;
|
|
84
|
+
padding-block-end: var(--nijmegen-card-padding-block-end);
|
|
85
|
+
padding-inline-end: var(--nijmegen-card-padding-inline-end);
|
|
86
|
+
padding-inline-start: var(--nijmegen-card-padding-inline-start);
|
|
87
|
+
|
|
88
|
+
> svg {
|
|
89
|
+
stroke: var(--nijmegen-card-action-icon-color);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.nijmegen-card--hover,
|
|
94
|
+
.nijmegen-card:hover {
|
|
95
|
+
.nijmegen-card__link {
|
|
96
|
+
@include utrecht-link--hover;
|
|
97
|
+
|
|
98
|
+
color: var(--nijmegen-card-heading-hover-color);
|
|
99
|
+
text-decoration: var(--nijmegen-card-heading-hover-text-decoration);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.nijmegen-card--active,
|
|
104
|
+
.nijmegen-card:active {
|
|
105
|
+
.nijmegen-card__link {
|
|
106
|
+
@include utrecht-link--active;
|
|
107
|
+
|
|
108
|
+
color: var(--nijmegen-card-heading-active-color);
|
|
109
|
+
text-decoration: var(--nijmegen-card-heading-active-text-decoration);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.nijmegen-card--focus,
|
|
114
|
+
.nijmegen-card:has(:focus) {
|
|
115
|
+
@include utrecht-link--focus;
|
|
116
|
+
|
|
117
|
+
.nijmegen-card__link {
|
|
118
|
+
color: var(--nijmegen-card-heading-focus-visible-color);
|
|
119
|
+
text-decoration: var(--nijmegen-card-heading-focus-visible-text-decoration);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.nijmegen-card--focus-visible,
|
|
124
|
+
.nijmegen-card:has(:focus-visible) {
|
|
125
|
+
@include utrecht-link--focus;
|
|
126
|
+
|
|
127
|
+
.nijmegen-card__footer > svg {
|
|
128
|
+
stroke: var(--nijmegen-card-color);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.nijmegen-card__figure img {
|
|
132
|
+
border-radius: var(--nijmegen-card-border-radius) var(--nijmegen-card-border-radius) 0 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.nijmegen-card__link {
|
|
136
|
+
color: var(--nijmegen-card-heading-focus-visible-color);
|
|
137
|
+
text-decoration: var(--nijmegen-card-heading-focus-visible-text-decoration);
|
|
138
|
+
|
|
139
|
+
&::after {
|
|
140
|
+
@include utrecht-focus-ring;
|
|
141
|
+
|
|
142
|
+
border-radius: var(--nijmegen-card-border-radius);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
package/dist/header.css
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
.nijmegen-header {
|
|
2
|
+
background-color: var(--nijmegen-header-background-color, #fff);
|
|
3
|
+
writing-mode: horizontal-tb;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.nijmegen-header__content {
|
|
7
|
+
align-items: center;
|
|
8
|
+
align-self: center;
|
|
9
|
+
border: 0 solid var(--nijmegen-header-border-color, transparent);
|
|
10
|
+
border-block-end-width: var(--nijmegen-header-border-block-end-width, 0);
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
justify-content: space-between;
|
|
14
|
+
margin-inline: auto;
|
|
15
|
+
max-inline-size: var(--nijmegen-header-content-max-inline-size, 100%);
|
|
16
|
+
padding-block-end: var(--nijmegen-header-content-padding-block-end, 0);
|
|
17
|
+
padding-block-start: var(--nijmegen-header-content-padding-block-start, 0);
|
|
18
|
+
padding-inline-end: var(--nijmegen-header-content-padding-inline-end, 0);
|
|
19
|
+
padding-inline-start: var(--nijmegen-header-content-padding-inline-start, 0);
|
|
20
|
+
}
|
|
21
|
+
@media (width < 1024px) {
|
|
22
|
+
.nijmegen-header__content {
|
|
23
|
+
display: none;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.nijmegen-header__content--small--inner {
|
|
28
|
+
align-items: center;
|
|
29
|
+
align-self: center;
|
|
30
|
+
border: 0 solid var(--nijmegen-header-border-color, transparent);
|
|
31
|
+
border-block-end-width: var(--nijmegen-header-border-block-end-width, 0);
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: row;
|
|
34
|
+
justify-content: space-between;
|
|
35
|
+
margin-inline: auto;
|
|
36
|
+
max-inline-size: var(--nijmegen-header-content-max-inline-size, 100%);
|
|
37
|
+
padding-block-end: var(--nijmegen-header-content-padding-block-end, 0);
|
|
38
|
+
padding-block-start: var(--nijmegen-header-content-padding-block-start, 0);
|
|
39
|
+
padding-inline-end: var(--nijmegen-header-content-padding-inline-end, 0);
|
|
40
|
+
padding-inline-start: var(--nijmegen-header-content-padding-inline-start, 0);
|
|
41
|
+
}
|
|
42
|
+
@media (width >= 1024px) {
|
|
43
|
+
.nijmegen-header__content--small {
|
|
44
|
+
display: none;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.nijmegen-header__mobile-menu {
|
|
49
|
+
display: none;
|
|
50
|
+
}
|
|
51
|
+
.nijmegen-header__mobile-menu--visible {
|
|
52
|
+
display: block;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.nijmegen-header__navigation,
|
|
56
|
+
.nijmegen-header__actions {
|
|
57
|
+
column-gap: var(--nijmegen-header-content-column-gap, 0);
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: row;
|
|
60
|
+
justify-content: space-between;
|
|
61
|
+
list-style: none;
|
|
62
|
+
padding-inline-start: 0;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.nijmegen-header__panel {
|
|
66
|
+
display: none;
|
|
67
|
+
left: 0; /* stylelint-disable-line property-disallowed-list */
|
|
68
|
+
padding-block-start: 1.5rem;
|
|
69
|
+
position: absolute;
|
|
70
|
+
width: 100%; /* stylelint-disable-line property-disallowed-list */
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.nijmegen-header-item {
|
|
74
|
+
align-items: end;
|
|
75
|
+
all: unset;
|
|
76
|
+
color: var(--nijmegen-header-item-color, #000);
|
|
77
|
+
column-gap: var(--nijmegen-header-item-column-gap, 0);
|
|
78
|
+
cursor: pointer;
|
|
79
|
+
display: flex;
|
|
80
|
+
flex-direction: row;
|
|
81
|
+
font-family: var(--nijmegen-header-item-font-family, inherit);
|
|
82
|
+
font-size: var(--nijmegen-header-item-font-size, 1rem);
|
|
83
|
+
font-weight: var(--nijmegen-header-item-font-weight, 400);
|
|
84
|
+
justify-content: space-between;
|
|
85
|
+
line-height: var(--nijmegen-header-item-line-height, 1.5);
|
|
86
|
+
text-decoration: none;
|
|
87
|
+
user-select: none;
|
|
88
|
+
}
|
|
89
|
+
.nijmegen-header-item[aria-expanded]::after {
|
|
90
|
+
background-color: var(--nijmegen-header-item-color, #000);
|
|
91
|
+
content: "";
|
|
92
|
+
display: inline-block;
|
|
93
|
+
/* stylelint-disable-next-line property-disallowed-list */
|
|
94
|
+
height: var(--nijmegen-header-item-icon-size, 1.5rem);
|
|
95
|
+
mask-position: center;
|
|
96
|
+
mask-repeat: no-repeat;
|
|
97
|
+
mask-size: 100%;
|
|
98
|
+
width: var(--nijmegen-header-item-icon-size, 1.5rem); /* stylelint-disable-line property-disallowed-list */
|
|
99
|
+
}
|
|
100
|
+
.nijmegen-header-item--active, .nijmegen-header-item[aria-expanded=true] {
|
|
101
|
+
-webkit-text-stroke-width: 1px;
|
|
102
|
+
}
|
|
103
|
+
.nijmegen-header-item--active + .nijmegen-header__panel, .nijmegen-header-item[aria-expanded=true] + .nijmegen-header__panel {
|
|
104
|
+
display: block;
|
|
105
|
+
}
|
|
106
|
+
.nijmegen-header-item[aria-expanded=false]::after {
|
|
107
|
+
mask-image: var(--nijmegen-header-item-open-icon-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-down"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 9l6 6l6 -6" /></svg>'));
|
|
108
|
+
}
|
|
109
|
+
.nijmegen-header-item[aria-expanded=true]::after {
|
|
110
|
+
mask-image: var(--nijmegen-header-item-open-icon-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-up"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 15l6 -6l6 6" /></svg>'));
|
|
111
|
+
}
|
|
112
|
+
.nijmegen-header-item[class*=nijmegen-header-item--icon-]::before {
|
|
113
|
+
background-color: var(--nijmegen-header-item-color, #000);
|
|
114
|
+
content: "";
|
|
115
|
+
display: inline-block;
|
|
116
|
+
/* stylelint-disable-next-line property-disallowed-list */
|
|
117
|
+
height: var(--nijmegen-header-item-icon-size, 1.5rem);
|
|
118
|
+
mask-position: center;
|
|
119
|
+
mask-repeat: no-repeat;
|
|
120
|
+
mask-size: 100%;
|
|
121
|
+
width: var(--nijmegen-header-item-icon-size, 1.5rem); /* stylelint-disable-line property-disallowed-list */
|
|
122
|
+
}
|
|
123
|
+
.nijmegen-header-item[class*=nijmegen-header-item--icon-][aria-expanded]::after {
|
|
124
|
+
all: unset;
|
|
125
|
+
}
|
|
126
|
+
.nijmegen-header-item[class*=nijmegen-header-item--icon-][aria-expanded=true]::before {
|
|
127
|
+
mask-image: var(--nijmegen-header-item-close-icon-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-x"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M18 6l-12 12" /><path d="M6 6l12 12" /></svg>'));
|
|
128
|
+
}
|
|
129
|
+
.nijmegen-header-item--icon-search::before {
|
|
130
|
+
mask-image: var(--nijmegen-header-item-search-icon-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-search"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" /><path d="M21 21l-6 -6" /></svg>'));
|
|
131
|
+
}
|
|
132
|
+
@media (width < 1280px) {
|
|
133
|
+
.nijmegen-header-item--icon-user span {
|
|
134
|
+
display: none;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
.nijmegen-header-item--icon-user::before {
|
|
138
|
+
mask-image: var(--nijmegen-header-item-search-icon-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-user"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0" /><path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" /></svg>'));
|
|
139
|
+
}
|
|
140
|
+
.nijmegen-header-item:hover, .nijmegen-header-item--hover {
|
|
141
|
+
color: var(--nijmegen-header-item-hover-color, #000);
|
|
142
|
+
text-decoration: var(--nijmegen-header-item-hover-text-decoration, none);
|
|
143
|
+
}
|
|
144
|
+
.nijmegen-header-item:hover::before, .nijmegen-header-item:hover::after, .nijmegen-header-item--hover::before, .nijmegen-header-item--hover::after {
|
|
145
|
+
background-color: var(--nijmegen-header-item-hover-color, #000);
|
|
146
|
+
}
|
|
147
|
+
.nijmegen-header-item:active, .nijmegen-header-item--active {
|
|
148
|
+
color: var(--nijmegen-header-item-active-color, #000);
|
|
149
|
+
text-decoration: var(--nijmegen-header-item-active-text-decoration, none);
|
|
150
|
+
}
|
|
151
|
+
.nijmegen-header-item:focus-visible, .nijmegen-header-item--focus-visible {
|
|
152
|
+
background-color: var(--nijmegen-header-item-focus-visible-background-color, #fff);
|
|
153
|
+
border: var(--nijmegen-header-item-focus-visible-border-line-width, 1px) var(--nijmegen-header-item-focus-visible-border-line-style, dashed) var(--nijmegen-header-item-focus-visible-border-color, #082d26);
|
|
154
|
+
color: var(--nijmegen-header-item-focus-visible-color, #000);
|
|
155
|
+
}
|
package/dist/index.min.css
CHANGED
|
@@ -1,5 +1,123 @@
|
|
|
1
|
-
.nijmegen-
|
|
1
|
+
.nijmegen-header{background-color:var(--nijmegen-header-background-color,#fff);writing-mode:horizontal-tb}.nijmegen-header__content{align-items:center;align-self:center;border:0 solid var(--nijmegen-header-border-color,transparent);border-block-end-width:var(--nijmegen-header-border-block-end-width,0);display:flex;flex-direction:row;justify-content:space-between;margin-inline:auto;max-inline-size:var(--nijmegen-header-content-max-inline-size,100%);padding-block-end:var(--nijmegen-header-content-padding-block-end,0);padding-block-start:var(--nijmegen-header-content-padding-block-start,0);padding-inline-end:var(--nijmegen-header-content-padding-inline-end,0);padding-inline-start:var(--nijmegen-header-content-padding-inline-start,0)}@media (width < 1024px){.nijmegen-header__content{display:none}}.nijmegen-header__content--small--inner{align-items:center;align-self:center;border:0 solid var(--nijmegen-header-border-color,transparent);border-block-end-width:var(--nijmegen-header-border-block-end-width,0);display:flex;flex-direction:row;justify-content:space-between;margin-inline:auto;max-inline-size:var(--nijmegen-header-content-max-inline-size,100%);padding-block-end:var(--nijmegen-header-content-padding-block-end,0);padding-block-start:var(--nijmegen-header-content-padding-block-start,0);padding-inline-end:var(--nijmegen-header-content-padding-inline-end,0);padding-inline-start:var(--nijmegen-header-content-padding-inline-start,0)}@media (width >= 1024px){.nijmegen-header__content--small{display:none}}.nijmegen-header__mobile-menu{display:none}.nijmegen-header__mobile-menu--visible{display:block}.nijmegen-header__actions,.nijmegen-header__navigation{column-gap:var(--nijmegen-header-content-column-gap,0);display:flex;flex-direction:row;justify-content:space-between;list-style:none;padding-inline-start:0}.nijmegen-header__panel{display:none;left:0;padding-block-start:1.5rem;position:absolute;width:100%}.nijmegen-header-item{all:unset;align-items:end;color:var(--nijmegen-header-item-color,#000);column-gap:var(--nijmegen-header-item-column-gap,0);cursor:pointer;display:flex;flex-direction:row;font-family:var(--nijmegen-header-item-font-family,inherit);font-size:var(--nijmegen-header-item-font-size,1rem);font-weight:var(--nijmegen-header-item-font-weight,400);justify-content:space-between;line-height:var(--nijmegen-header-item-line-height,1.5);text-decoration:none;user-select:none}.nijmegen-header-item[aria-expanded]:after{background-color:var(--nijmegen-header-item-color,#000);content:"";display:inline-block;height:var(--nijmegen-header-item-icon-size,1.5rem);mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-header-item-icon-size,1.5rem)}.nijmegen-header-item--active,.nijmegen-header-item[aria-expanded=true]{-webkit-text-stroke-width:1px}.nijmegen-header-item--active+.nijmegen-header__panel,.nijmegen-header-item[aria-expanded=true]+.nijmegen-header__panel{display:block}.nijmegen-header-item[aria-expanded=false]:after{mask-image:var(--nijmegen-header-item-open-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-down"><path d="M0 0h24v24H0z" stroke="none"/><path d="m6 9 6 6 6-6"/></svg>'))}.nijmegen-header-item[aria-expanded=true]:after{mask-image:var(--nijmegen-header-item-open-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-up"><path d="M0 0h24v24H0z" stroke="none"/><path d="m6 15 6-6 6 6"/></svg>'))}.nijmegen-header-item[class*=nijmegen-header-item--icon-]:before{background-color:var(--nijmegen-header-item-color,#000);content:"";display:inline-block;height:var(--nijmegen-header-item-icon-size,1.5rem);mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-header-item-icon-size,1.5rem)}.nijmegen-header-item[class*=nijmegen-header-item--icon-][aria-expanded]:after{all:unset}.nijmegen-header-item[class*=nijmegen-header-item--icon-][aria-expanded=true]:before{mask-image:var(--nijmegen-header-item-close-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-x"><path d="M0 0h24v24H0z" stroke="none"/><path d="M18 6 6 18M6 6l12 12"/></svg>'))}.nijmegen-header-item--icon-search:before{mask-image:var(--nijmegen-header-item-search-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-search"><path d="M0 0h24v24H0z" stroke="none"/><path d="M3 10a7 7 0 1 0 14 0 7 7 0 1 0-14 0M21 21l-6-6"/></svg>'))}@media (width < 1280px){.nijmegen-header-item--icon-user span{display:none}}.nijmegen-header-item--icon-user:before{mask-image:var(--nijmegen-header-item-search-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-user"><path d="M0 0h24v24H0z" stroke="none"/><path d="M8 7a4 4 0 1 0 8 0 4 4 0 0 0-8 0M6 21v-2a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v2"/></svg>'))}.nijmegen-header-item--hover,.nijmegen-header-item:hover{color:var(--nijmegen-header-item-hover-color,#000);text-decoration:var(--nijmegen-header-item-hover-text-decoration,none)}.nijmegen-header-item--hover:after,.nijmegen-header-item--hover:before,.nijmegen-header-item:hover:after,.nijmegen-header-item:hover:before{background-color:var(--nijmegen-header-item-hover-color,#000)}.nijmegen-header-item--active,.nijmegen-header-item:active{color:var(--nijmegen-header-item-active-color,#000);text-decoration:var(--nijmegen-header-item-active-text-decoration,none)}.nijmegen-header-item--focus-visible,.nijmegen-header-item:focus-visible{background-color:var(--nijmegen-header-item-focus-visible-background-color,#fff);border:var(--nijmegen-header-item-focus-visible-border-line-width,1px) var(--nijmegen-header-item-focus-visible-border-line-style,dashed) var(--nijmegen-header-item-focus-visible-border-color,#082d26);color:var(--nijmegen-header-item-focus-visible-color,#000)}.utrecht-link i{font-size:1.5rem;inset-block-start:.15rem;position:relative}.nijmegen-toolbar-button{--_utrecht-button-background-color:var(
|
|
2
|
+
--_utrecht-button-hint-background-color,var(--_utrecht-button-appearance-background-color,var(--utrecht-button-background-color))
|
|
3
|
+
);--_utrecht-button-color:var(
|
|
4
|
+
--_utrecht-button-hint-color,var(--_utrecht-button-appearance-color,var(--utrecht-button-color))
|
|
5
|
+
);--_utrecht-button-border-color:var(
|
|
6
|
+
--_utrecht-button-hint-border-color,var(--_utrecht-button-appearance-border-color,var(--utrecht-button-border-color,transparent))
|
|
7
|
+
);--_utrecht-button-border-bottom-color:var(
|
|
8
|
+
--_utrecht-button-hint-border-bottom-color,var(
|
|
9
|
+
--_utrecht-button-hint-border-color,var(
|
|
10
|
+
--_utrecht-button-appearance-border-bottom-color,var(
|
|
11
|
+
--_utrecht-button-appearance-border-color,var(--utrecht-button-border-bottom-color,var(--utrecht-button-border-color,transparent))
|
|
12
|
+
)
|
|
13
|
+
)
|
|
14
|
+
)
|
|
15
|
+
);--_utrecht-button-disabled-background-color:var(
|
|
16
|
+
--_utrecht-button-hint-disabled-background-color,var(
|
|
17
|
+
--_utrecht-button-appearance-disabled-background-color,var(--utrecht-button-disabled-background-color,var(--utrecht-button-background-color))
|
|
18
|
+
)
|
|
19
|
+
);--_utrecht-button-disabled-border-color:var(
|
|
20
|
+
--_utrecht-button-hint-disabled-border-color,var(
|
|
21
|
+
--_utrecht-button-appearance-disabled-border-color,var(--utrecht-button-disabled-border-color,var(--utrecht-button-border-color))
|
|
22
|
+
)
|
|
23
|
+
);--_utrecht-button-disabled-color:var(
|
|
24
|
+
--_utrecht-button-hint-disabled-color,var(--_utrecht-button-appearance-disabled-color,var(--utrecht-button-disabled-color,var(--utrecht-button-color)))
|
|
25
|
+
);--_utrecht-button-pressed-background-color:var(
|
|
26
|
+
--_utrecht-button-hint-pressed-background-color,var(
|
|
27
|
+
--_utrecht-button-hint-background-color,var(
|
|
28
|
+
--_utrecht-button-appearance-pressed-background-color,var(
|
|
29
|
+
--_utrecht-button-appearance-background-color,var(--utrecht-button-pressed-background-color,var(--utrecht-button-background-color))
|
|
30
|
+
)
|
|
31
|
+
)
|
|
32
|
+
)
|
|
33
|
+
);--_utrecht-button-pressed-border-color:var(
|
|
34
|
+
--_utrecht-button-hint-pressed-border-color,var(
|
|
35
|
+
--_utrecht-button-hint-border-color,var(
|
|
36
|
+
--_utrecht-button-appearance-pressed-border-color,var(
|
|
37
|
+
--_utrecht-button-appearance-border-color,var(--utrecht-button-pressed-border-color,var(--utrecht-button-border-color))
|
|
38
|
+
)
|
|
39
|
+
)
|
|
40
|
+
)
|
|
41
|
+
);--_utrecht-button-pressed-color:var(
|
|
42
|
+
--_utrecht-button-hint-pressed-color,var(
|
|
43
|
+
--_utrecht-button-hint-color,var(
|
|
44
|
+
--_utrecht-button-appearance-pressed-color,var(--_utrecht-button-appearance-color,var(--utrecht-button-pressed-color,var(--utrecht-button-color)))
|
|
45
|
+
)
|
|
46
|
+
)
|
|
47
|
+
);--_utrecht-button-focus-background-color:var(
|
|
48
|
+
--_utrecht-button-hint-focus-background-color,var(
|
|
49
|
+
--_utrecht-button-hint-background-color,var(
|
|
50
|
+
--_utrecht-button-appearance-focus-background-color,var(
|
|
51
|
+
--_utrecht-button-appearance-background-color,var(--utrecht-button-focus-background-color,var(--utrecht-button-background-color))
|
|
52
|
+
)
|
|
53
|
+
)
|
|
54
|
+
)
|
|
55
|
+
);--_utrecht-button-focus-border-color:var(
|
|
56
|
+
--_utrecht-button-hint-focus-border-color,var(
|
|
57
|
+
--_utrecht-button-hint-border-color,var(
|
|
58
|
+
--_utrecht-button-appearance-focus-border-color,var(
|
|
59
|
+
--_utrecht-button-appearance-border-color,var(--utrecht-button-focus-border-color,var(--utrecht-button-border-color))
|
|
60
|
+
)
|
|
61
|
+
)
|
|
62
|
+
)
|
|
63
|
+
);--_utrecht-button-focus-color:var(
|
|
64
|
+
--_utrecht-button-hint-focus-color,var(
|
|
65
|
+
--_utrecht-button-hint-color,var(
|
|
66
|
+
--_utrecht-button-appearance-focus-color,var(--_utrecht-button-appearance-color,var(--utrecht-button-focus-color,var(--utrecht-button-color)))
|
|
67
|
+
)
|
|
68
|
+
)
|
|
69
|
+
);--_utrecht-button-hover-background-color:var(
|
|
70
|
+
--_utrecht-button-hint-hover-background-color,var(
|
|
71
|
+
--_utrecht-button-hint-background-color,var(
|
|
72
|
+
--_utrecht-button-appearance-hover-background-color,var(
|
|
73
|
+
--_utrecht-button-appearance-background-color,var(--utrecht-button-hover-background-color,var(--utrecht-button-background-color))
|
|
74
|
+
)
|
|
75
|
+
)
|
|
76
|
+
)
|
|
77
|
+
);--_utrecht-button-hover-border-color:var(
|
|
78
|
+
--_utrecht-button-hint-hover-border-color,var(
|
|
79
|
+
--_utrecht-button-hint-border-color,var(
|
|
80
|
+
--_utrecht-button-appearance-hover-border-color,var(
|
|
81
|
+
--_utrecht-button-appearance-border-color,var(--utrecht-button-hover-border-color,var(--utrecht-button-border-color))
|
|
82
|
+
)
|
|
83
|
+
)
|
|
84
|
+
)
|
|
85
|
+
);--_utrecht-button-hover-color:var(
|
|
86
|
+
--_utrecht-button-hint-hover-color,var(
|
|
87
|
+
--_utrecht-button-hint-color,var(
|
|
88
|
+
--_utrecht-button-appearance-hover-color,var(--_utrecht-button-appearance-color,var(--utrecht-button-hover-color,var(--utrecht-button-color)))
|
|
89
|
+
)
|
|
90
|
+
)
|
|
91
|
+
);--_utrecht-button-active-background-color:var(
|
|
92
|
+
--_utrecht-button-hint-active-background-color,var(
|
|
93
|
+
--_utrecht-button-hint-background-color,var(
|
|
94
|
+
--_utrecht-button-appearance-active-background-color,var(
|
|
95
|
+
--_utrecht-button-appearance-background-color,var(--utrecht-button-active-background-color,var(--utrecht-button-background-color))
|
|
96
|
+
)
|
|
97
|
+
)
|
|
98
|
+
)
|
|
99
|
+
);--_utrecht-button-active-border-color:var(
|
|
100
|
+
--_utrecht-button-hint-active-border-color,var(
|
|
101
|
+
--_utrecht-button-hint-border-color,var(
|
|
102
|
+
--_utrecht-button-appearance-active-border-color,var(
|
|
103
|
+
--_utrecht-button-appearance-border-color,var(--utrecht-button-active-border-color,var(--utrecht-button-border-color))
|
|
104
|
+
)
|
|
105
|
+
)
|
|
106
|
+
)
|
|
107
|
+
);--_utrecht-button-active-color:var(
|
|
108
|
+
--_utrecht-button-hint-active-color,var(
|
|
109
|
+
--_utrecht-button-hint-color,var(
|
|
110
|
+
--_utrecht-button-appearance-active-color,var(--_utrecht-button-appearance-color,var(--utrecht-button-active-color,var(--utrecht-button-color)))
|
|
111
|
+
)
|
|
112
|
+
)
|
|
113
|
+
);--_utrecht-button-border-width:var(--_utrecht-button-appearance-border-width,var(--utrecht-button-border-width,0));--_utrecht-button-border-block-end-width:var(
|
|
114
|
+
--utrecht-button-border-bottom-width,var(--_utrecht-button-border-width,0)
|
|
115
|
+
);--_utrecht-button-font-size:var(--_utrecht-button-appearance-font-size,var(--utrecht-button-font-size));--_utrecht-button-line-height:var(--_utrecht-button-appearance-line-height,var(--utrecht-button-line-height));--utrecht-icon-size:var(--utrecht-button-icon-size,1em);--_utrecht-button-appearance-active-background-color:var(--utrecht-button-subtle-active-background-color);--_utrecht-button-appearance-active-border-color:var(--utrecht-button-subtle-active-border-color);--_utrecht-button-appearance-active-color:var(--utrecht-button-subtle-active-color);--_utrecht-button-appearance-background-color:var(--utrecht-button-subtle-background-color);--_utrecht-button-appearance-border-color:var(--utrecht-button-subtle-border-color);--_utrecht-button-appearance-border-width:var(--utrecht-button-subtle-border-width);--_utrecht-button-appearance-color:var(--utrecht-button-subtle-color);--_utrecht-button-appearance-font-size:var(--utrecht-button-subtle-font-size);--_utrecht-button-appearance-font-weight:var(--utrecht-button-subtle-font-weight);--_utrecht-button-appearance-line-height:var(--utrecht-button-subtle-line-height);--_utrecht-button-appearance-disabled-background-color:var(--utrecht-button-subtle-disabled-background-color);--_utrecht-button-appearance-disabled-border-color:var(--utrecht-button-subtle-disabled-border-color);--_utrecht-button-appearance-disabled-color:var(--utrecht-button-subtle-disabled-color);--_utrecht-button-appearance-focus-background-color:var(--utrecht-button-subtle-focus-background-color);--_utrecht-button-appearance-focus-border-color:var(--utrecht-button-subtle-focus-border-color);--_utrecht-button-appearance-focus-color:var(--utrecht-button-subtle-focus-color);--_utrecht-button-appearance-hover-background-color:var(--utrecht-button-subtle-hover-background-color);--_utrecht-button-appearance-hover-border-color:var(--utrecht-button-subtle-hover-border-color);--_utrecht-button-appearance-hover-color:var(--utrecht-button-subtle-hover-color);--_utrecht-button-appearance-pressed-background-color:var(--utrecht-button-subtle-pressed-background-color);--_utrecht-button-appearance-pressed-border-color:var(--utrecht-button-subtle-pressed-border-color);--_utrecht-button-appearance-pressed-color:var(--utrecht-button-subtle-pressed-color);align-items:center;background-color:var(--_utrecht-button-background-color);block-size:fit-content;border-block-end-color:var(--_utrecht-button-border-bottom-color);border-block-end-width:var(--_utrecht-button-border-block-end-width);border-color:var(--_utrecht-button-border-color);border-radius:var(--utrecht-button-border-radius);border-style:solid;border-width:var(--_utrecht-button-border-width);box-sizing:border-box;color:var(--_utrecht-button-color);column-gap:var(--utrecht-button-column-gap);column-gap:var(--nijmegen-toolbar-button-column-gap);cursor:var(--utrecht-action-activate-cursor,revert);cursor:pointer;display:inline-flex;font-family:var(--utrecht-button-font-family,var(--utrecht-document-font-family));font-size:var(--_utrecht-button-font-size,var(--utrecht-document-font-family,inherit));font-weight:var(--_utrecht-button-appearance-font-weight,var(--utrecht-button-font-weight));inline-size:var(--utrecht-button-inline-size,auto);justify-content:center;line-height:var(--_utrecht-button-line-height);max-inline-size:var(--utrecht-button-max-inline-size,fit-content);min-block-size:var(--utrecht-button-min-block-size,44px);min-inline-size:var(--utrecht-button-min-inline-size,44px);padding-block-end:var(--utrecht-button-padding-block-end);padding-block-end:var(--nijmegen-toolbar-button-padding-block-end);padding-block-start:var(--utrecht-button-padding-block-start);padding-block-start:var(--nijmegen-toolbar-button-padding-block-start);padding-inline-end:var(--utrecht-button-padding-inline-end);padding-inline-end:var(--nijmegen-toolbar-button-padding-inline-end);padding-inline-start:var(--utrecht-button-padding-inline-start);padding-inline-start:var(--nijmegen-toolbar-button-padding-inline-start);scale:1;text-transform:var(--utrecht-button-text-transform);-webkit-user-select:none;user-select:none}.nijmegen-toolbar-button.nijmegen-toolbar-button--icon-menu:before{mask-image:var(--nijmegen-toolbar-button-menu-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M0 0h24v24H0z" stroke="none"/><path d="M4 6h16M4 12h16M4 18h16"/></svg>'))}.nijmegen-toolbar-button.nijmegen-toolbar-button--icon-menu:before{background-color:var(--_utrecht-button-appearance-color);content:"";display:inline-block;flex-shrink:0;height:var(--nijmegen-toobar-button-menu-icon-height,1.5rem);mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-toobar-button-menu-icon-width,1.5rem)}.nijmegen-toolbar-button.nijmegen-toolbar-button--icon-menu[aria-expanded=true]:before{mask-image:var(--nijmegen-toolbar-button-close-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-x"><path d="M0 0h24v24H0z" stroke="none"/><path d="M18 6 6 18M6 6l12 12"/></svg>'))}.nijmegen-toolbar-button.nijmegen-toolbar-button--icon-search:before{mask-image:var(--nijmegen-toolbar-button-search-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-search"><path d="M0 0h24v24H0z" stroke="none"/><path d="M3 10a7 7 0 1 0 14 0 7 7 0 1 0-14 0M21 21l-6-6"/></svg>'))}.nijmegen-toolbar-button.nijmegen-toolbar-button--icon-search:before{background-color:var(--_utrecht-button-appearance-color);content:"";display:inline-block;flex-shrink:0;height:var(--nijmegen-toobar-button-menu-icon-height,1.5rem);mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-toobar-button-menu-icon-width,1.5rem)}.nijmegen-toolbar-button.nijmegen-toolbar-button--icon-search[aria-expanded=true]:before{mask-image:var(--nijmegen-toolbar-button-close-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-x"><path d="M0 0h24v24H0z" stroke="none"/><path d="M18 6 6 18M6 6l12 12"/></svg>'))}.nijmegen-toolbar-button.nijmegen-toolbar-button--focus-visible,.nijmegen-toolbar-button:focus-visible{--_utrecht-focus-ring-box-shadow:0 0 0 var(--utrecht-focus-outline-width,0) var(--utrecht-focus-inverse-outline-color,transparent);background-color:var(--_utrecht-button-focus-background-color);border-color:var(--_utrecht-button-focus-border-color);box-shadow:var(--_utrecht-focus-ring-box-shadow);color:var(--_utrecht-button-focus-color);outline-color:var(--utrecht-focus-outline-color,revert);outline-offset:var(--utrecht-focus-outline-offset,revert);outline-style:var(--utrecht-focus-outline-style,revert);outline-width:var(--utrecht-focus-outline-width,revert);scale:var(--utrecht-button-focus-scale,1);z-index:1}.nijmegen-toolbar-button.nijmegen-toolbar-button--active,.nijmegen-toolbar-button:active:not(:disabled,[aria-disabled=true]){background-color:var(--_utrecht-button-active-background-color);border-color:var(--_utrecht-button-active-border-color);color:var(--_utrecht-button-active-color)}.nijmegen-toolbar-button.nijmegen-toolbar-button--hover,.nijmegen-toolbar-button:hover:not(:disabled,[aria-disabled=true]){background-color:var(--_utrecht-button-hover-background-color);border-color:var(--_utrecht-button-hover-border-color);color:var(--_utrecht-button-hover-color);scale:var(--utrecht-button-hover-scale,1)}.nijmegen-mega-menu{background-color:var(--nijmegen-mega-menu-background-color,#fff);border:0 solid var(--nijmegen-mega-menu-border-color,transparent);border-block-end-width:var(--nijmegen-mega-menu-border-block-end-width,1px);writing-mode:horizontal-tb}.nijmegen-mega-menu__container{margin-inline:auto;max-inline-size:var(--nijmegen-header-content-max-inline-size,100%)}.nijmegen-mega-menu__content{column-gap:var(--nijmegen-mega-menu-content-column-gap,0);display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-inline:auto;padding-block-end:var(--nijmegen-mega-menu-content-padding-block-end,0);padding-block-start:var(--nijmegen-mega-menu-content-padding-block-start,0);padding-inline-end:var(--nijmegen-mega-menu-content-padding-inline-end,0);padding-inline-start:var(--nijmegen-mega-menu-content-padding-inline-start,0);row-gap:var(--nijmegen-mega-menu-content-row-gap,0)}.nijmegen-mega-menu__content .utrecht-heading-4{font-size:1.25rem}.nijmegen-mega-menu__content>*{flex-basis:100%}@media (width >= 768px){.nijmegen-mega-menu__content>*{flex-basis:calc(33.33333% - var(--nijmegen-mega-menu-content-column-gap, 0)*2/3)}.nijmegen-mega-menu__content>:only-child{flex-basis:100%}}@media (width >= 992px){.nijmegen-mega-menu__content>*{flex-basis:calc(25% - var(--nijmegen-mega-menu-content-column-gap, 0)*3/4)}.nijmegen-mega-menu__content>:only-child{flex-basis:100%}}.nijmegen-mega-menu__content.nijmegen-mega-menu__content--full-width>*{flex-basis:100%}.nijmegen-mega-menu__content ul{padding-block-start:1rem;row-gap:1rem}.nijmegen-mobile-menu{background-color:var(--nijmegen-menu-background-color);position:relative}.nijmegen-mobile-menu__list{display:flex;flex-direction:column;line-height:var(--nijmegen-menu-link-line-height);list-style:none;padding-inline-start:0}.nijmegen-mobile-menu__link{background-color:var(--nijmegen-menu-background-color);box-sizing:border-box;color:var(--nijmegen-menu-link-color);cursor:pointer;display:flex;font-family:var(--nijmegen-menu-link-font-family);font-size:var(--nijmegen-menu-link-font-size);font-weight:var(--nijmegen-menu-link-font-weight);justify-content:space-between;padding-block-end:var(--nijmegen-menu-link-padding-block-end);padding-block-start:var(--nijmegen-menu-link-padding-block-start);padding-inline-end:var(--nijmegen-menu-link-padding-inline-end);padding-inline-start:var(--nijmegen-menu-link-padding-inline-start);position:relative;text-decoration:none;width:100%}.nijmegen-mobile-menu__link:is(button){appearance:none;border:0}.nijmegen-mobile-menu__link.nijmegen-mobile-menu__link--focus,.nijmegen-mobile-menu__link:focus{--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;background-color:var(--utrecht-link-focus-background-color,transparent);text-decoration-skip-ink:none}.nijmegen-mobile-menu__link.nijmegen-mobile-menu__link--focus-visible,.nijmegen-mobile-menu__link:focus-visible{--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;--_utrecht-focus-ring-box-shadow:0 0 0 var(--utrecht-focus-outline-width,0) var(--utrecht-focus-inverse-outline-color,transparent);--_utrecht-link-state-text-decoration:var(
|
|
2
116
|
--utrecht-link-focus-visible-text-decoration,var(--utrecht-link-focus-text-decoration)
|
|
3
117
|
);--_utrecht-link-state-text-decoration-thickness:var(
|
|
4
118
|
--utrecht-link-focus-visible-text-decoration-thickness,var(--utrecht-link-focus-text-decoration-thickness)
|
|
5
|
-
);background-color:var(--utrecht-link-focus-background-color,transparent);box-shadow:var(--_utrecht-focus-ring-box-shadow);color:var(--nijmegen-link-list-item-focus-visible-color,#000);outline-color:var(--utrecht-focus-outline-color,revert);outline-offset:var(--utrecht-focus-outline-offset,revert);outline-style:var(--utrecht-focus-outline-style,revert);outline-width:var(--utrecht-focus-outline-width,revert);text-decoration-skip-ink:none;z-index:1;z-index:var(--utrecht-stack-focus-z-index,1)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--focus-visible:before,.nijmegen-link-list__link:any-link:focus-visible:before{background-color:var(--nijmegen-link-list-item-focus-visible-color,#000)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--visited,.nijmegen-link-list__link:any-link:visited{--_utrecht-link-forced-colors-color:visitedtext;--_utrecht-link-state-color:var(--utrecht-link-visited-color)}.nijmegen-link-list__link:any-link:before{background-color:var(--utrecht-link-color);content:"";display:inline-block;height:var(--nijmegen-icon-functional-size-height,.875rem);mask-image:var(--nijmegen-link-list-icon,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 6 6 6-6 6"/></svg>'));mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-icon-functional-size-width,1.5rem)}
|
|
119
|
+
);background-color:var(--utrecht-link-focus-background-color,transparent);box-shadow:var(--_utrecht-focus-ring-box-shadow);outline-color:var(--utrecht-focus-outline-color,revert);outline-offset:var(--utrecht-focus-outline-offset,revert);outline-style:var(--utrecht-focus-outline-style,revert);outline-width:var(--utrecht-focus-outline-width,revert);text-decoration-skip-ink:none;z-index:1;z-index:var(--utrecht-stack-focus-z-index,1)}.nijmegen-mobile-menu__link span{align-items:center;display:inline-flex;gap:var(--nijmegen-menu-link-column-gap)}.nijmegen-mobile-menu__link svg{stroke:currentColor}.nijmegen-mobile-menu__link--small{font-size:var(--nijmegen-menu-link-small-font-size);padding-block-end:var(--nijmegen-menu-link-small-padding-block-end);padding-block-start:var(--nijmegen-menu-link-small-padding-block-start);padding-inline-end:var(--nijmegen-menu-link-small-padding-inline-end);padding-inline-start:var(--nijmegen-menu-link-small-padding-inline-start)}.nijmegen-mobile-menu__link--small span{gap:var(--nijmegen-menu-link-small-column-gap)}.nijmegen-mobile-menu__link--back,.nijmegen-mobile-menu__link--strong{font-weight:var(--nijmegen-menu-link-level-1-font-weight)}.nijmegen-mobile-menu__link--back{padding-block-end:var(--nijmegen-menu-button-padding-block-end);padding-block-start:var(--nijmegen-menu-button-padding-block-start);padding-inline-end:var(--nijmegen-menu-button-padding-inline-end);padding-inline-start:var(--nijmegen-menu-button-padding-inline-start)}.nijmegen-mobile-menu__link--back span:before{background-color:currentColor;content:"";display:inline-block;height:var(--nijmegen-header-item-icon-size,1.5rem);mask-image:var(--nijmegen-header-item-open-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-left"><path d="M0 0h24v24H0z" stroke="none"/><path d="m15 6-6 6 6 6"/></svg>'));mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-header-item-icon-size,1.5rem)}.nijmegen-mobile-menu__link--current{color:var(--nijmegen-menu-link-current-color);font-weight:var(--nijmegen-menu-link-current-font-weight,600)}.nijmegen-mobile-menu__link--current:after{border-inline-start-color:var(--nijmegen-menu-link-current-border-color);border-inline-start-style:solid;border-inline-start-width:var(--nijmegen-menu-link-current-border-width,4px);content:"";inset:0;position:absolute}.nijmegen-mobile-menu__link--expanded,.nijmegen-mobile-menu__link[aria-expanded=true]{background-color:var(--nijmegen-menu-link-expanded-background-color);color:var(--nijmegen-menu-link-expanded-color);font-weight:var(--nijmegen-menu-link-expanded-font-weight,600)}.nijmegen-mobile-menu__link--expanded svg,.nijmegen-mobile-menu__link--expanded:after,.nijmegen-mobile-menu__link[aria-expanded=true] svg,.nijmegen-mobile-menu__link[aria-expanded=true]:after{transform:scaleY(-1)}.nijmegen-mobile-menu__link--chevron:after{background-color:currentColor;content:"";display:inline-block;height:var(--nijmegen-header-item-icon-size,1.5rem);mask-image:var(--nijmegen-header-item-open-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-down"><path d="M0 0h24v24H0z" stroke="none"/><path d="m6 9 6 6 6-6"/></svg>'));mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-header-item-icon-size,1.5rem)}.nijmegen-mobile-menu__link--arrow:after{background-color:currentColor;content:"";display:inline-block;height:var(--nijmegen-header-item-icon-size,1.5rem);mask-image:var(--nijmegen-header-item-open-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-arrow-right"><path d="M0 0h24v24H0z" stroke="none"/><path d="M5 12h14M13 18l6-6M13 6l6 6"/></svg>'));mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-header-item-icon-size,1.5rem)}.nijmegen-mobile-menu__details .nijmegen-mobile-menu__list,.nijmegen-mobile-menu__details-content{display:none}.nijmegen-mobile-menu__details--open .nijmegen-mobile-menu__list{display:block}.nijmegen-mobile-menu__separator{padding-inline-end:var(--nijmegen-menu-link-padding-inline-end);padding-inline-start:var(--nijmegen-menu-link-padding-inline-start)}.nijmegen-mobile-menu__panel{background-color:var(--nijmegen-menu-background-color);display:none;flex-direction:column;gap:var(--nijmegen-menu-link-column-gap);inset:0;min-height:100%;position:absolute;width:100%;z-index:10}.nijmegen-mobile-menu__panel--active{display:flex}.nijmegen-card{background-color:var(--nijmegen-card-background-color);border-color:var(--nijmegen-card-border-color);border-radius:var(--nijmegen-card-border-radius);border-style:solid;border-width:var(--nijmegen-card-border-width);color:var(--nijmegen-card-color);display:flex;flex-direction:column;max-width:var(--nijmegen-card-max-width,328px);position:relative}.nijmegen-card__link{color:inherit;text-decoration:var(--nijmegen-card-heading-text-decoration)}.nijmegen-card__link:focus-visible{outline:none}.nijmegen-card__link:after{content:"";inset:0;position:absolute}.nijmegen-card__figure{aspect-ratio:12/9;border-radius:var(--nijmegen-card-border-radius) var(--nijmegen-card-border-radius) 0 0;display:inline-flex;margin:0;order:-1;overflow:hidden}.nijmegen-card__figure img{height:100%;object-fit:cover;object-position:center center;width:100%}.nijmegen-card__inner{display:flex;flex-direction:column;gap:var(--nijmegen-card-content-row-gap);padding-block-end:var(--nijmegen-card-padding-block-end);padding-block-start:var(--nijmegen-card-padding-block-start);padding-inline-end:var(--nijmegen-card-padding-inline-end);padding-inline-start:var(--nijmegen-card-padding-inline-start)}.nijmegen-card__inner ul{box-sizing:border-box;flex-direction:column;font-family:var(--utrecht-document-font-family,inherit);font-size:var(--utrecht-unordered-list-font-size,var(--utrecht-document-font-size,inherit));line-height:var(--utrecht-unordered-list-line-height,var(--utrecht-document-line-height,inherit));margin-block-end:calc(var(--utrecht-space-around, 0)*var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end, 0)));margin-block-start:calc(var(--utrecht-space-around, 0)*var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start, 0)));padding-inline-start:var(--utrecht-unordered-list-padding-inline-start,2ch);padding-inline-start:0;text-align:start}.nijmegen-card__inner ul,.nijmegen-card__meta-item{display:flex;gap:var(--nijmegen-card-metadata-column-gap)}.nijmegen-card__meta-item{align-items:center}.nijmegen-card__meta-item svg{block-size:var(--nijmegen-card-icon-size)}.nijmegen-card__footer{display:flex;flex-direction:row-reverse;justify-content:space-between;padding-block-end:var(--nijmegen-card-padding-block-end);padding-inline-end:var(--nijmegen-card-padding-inline-end);padding-inline-start:var(--nijmegen-card-padding-inline-start)}.nijmegen-card__footer>svg{stroke:var(--nijmegen-card-action-icon-color)}.nijmegen-card--hover .nijmegen-card__link,.nijmegen-card:hover .nijmegen-card__link{--_utrecht-link-forced-colors-color:linktext;--_utrecht-link-state-color:var(--utrecht-link-hover-color);--_utrecht-link-state-text-decoration:var(--utrecht-link-hover-text-decoration);--_utrecht-link-state-text-decoration-thickness:var(--utrecht-link-hover-text-decoration-thickness);text-decoration-skip:none;color:var(--nijmegen-card-heading-hover-color);text-decoration:var(--nijmegen-card-heading-hover-text-decoration);text-decoration-skip-ink:none}.nijmegen-card--active .nijmegen-card__link,.nijmegen-card:active .nijmegen-card__link{--_utrecht-link-forced-colors-color:activetext;--_utrecht-link-state-color:var(--utrecht-link-active-color);color:var(--nijmegen-card-heading-active-color);text-decoration:var(--nijmegen-card-heading-active-text-decoration)}.nijmegen-card--focus,.nijmegen-card:has(:focus){--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;background-color:var(--utrecht-link-focus-background-color,transparent);text-decoration-skip-ink:none}.nijmegen-card--focus .nijmegen-card__link,.nijmegen-card:has(:focus) .nijmegen-card__link{color:var(--nijmegen-card-heading-focus-visible-color);text-decoration:var(--nijmegen-card-heading-focus-visible-text-decoration)}.nijmegen-card--focus-visible,.nijmegen-card:has(:focus-visible){--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;background-color:var(--utrecht-link-focus-background-color,transparent);text-decoration-skip-ink:none}.nijmegen-card--focus-visible .nijmegen-card__footer>svg,.nijmegen-card:has(:focus-visible) .nijmegen-card__footer>svg{stroke:var(--nijmegen-card-color)}.nijmegen-card--focus-visible .nijmegen-card__figure img,.nijmegen-card:has(:focus-visible) .nijmegen-card__figure img{border-radius:var(--nijmegen-card-border-radius) var(--nijmegen-card-border-radius) 0 0}.nijmegen-card--focus-visible .nijmegen-card__link,.nijmegen-card:has(:focus-visible) .nijmegen-card__link{color:var(--nijmegen-card-heading-focus-visible-color);text-decoration:var(--nijmegen-card-heading-focus-visible-text-decoration)}.nijmegen-card--focus-visible .nijmegen-card__link:after,.nijmegen-card:has(:focus-visible) .nijmegen-card__link:after{--_utrecht-focus-ring-box-shadow:0 0 0 var(--utrecht-focus-outline-width,0) var(--utrecht-focus-inverse-outline-color,transparent);border-radius:var(--nijmegen-card-border-radius);box-shadow:var(--_utrecht-focus-ring-box-shadow);outline-color:var(--utrecht-focus-outline-color,revert);outline-offset:var(--utrecht-focus-outline-offset,revert);outline-style:var(--utrecht-focus-outline-style,revert);outline-width:var(--utrecht-focus-outline-width,revert);z-index:1}.utrecht-ordered-list{line-height:var(--utrecht-unordered-list-line-height,var(--utrecht-document-line-height,inherit))!important}.nijmegen-link-list{all:unset;display:flex;flex-direction:column;row-gap:var(--nijmegen-link-list-row-gap,.5rem)}.nijmegen-link-list__item{display:inline-flex;list-style:none}.nijmegen-link-list__link:any-link{align-items:center;color:var(--utrecht-link-color);display:inline-flex;gap:var(--todo-link-list-item-column-gap);text-decoration:var(--nijmegen-link-list-item-text-decoration,none)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--active,.nijmegen-link-list__link:any-link:active{--_utrecht-link-forced-colors-color:activetext;--_utrecht-link-state-color:var(--utrecht-link-active-color);color:var(--nijmegen-link-list-item-active-color,#0c483d);text-decoration:var(--nijmegen-link-list-item-active-text-decoration,underline)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--active:before,.nijmegen-link-list__link:any-link:active:before{background-color:var(--nijmegen-link-list-item-active-color,#0c483d)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--hover,.nijmegen-link-list__link:any-link:hover{--_utrecht-link-forced-colors-color:linktext;--_utrecht-link-state-color:var(--utrecht-link-hover-color);--_utrecht-link-state-text-decoration:var(--utrecht-link-hover-text-decoration);--_utrecht-link-state-text-decoration-thickness:var(--utrecht-link-hover-text-decoration-thickness);text-decoration-skip:none;color:var(--nijmegen-link-list-item-hover-color,#116253);text-decoration:var(--nijmegen-link-list-item-hover-text-decoration,underline);text-decoration-skip-ink:none}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--hover:before,.nijmegen-link-list__link:any-link:hover:before{background-color:var(--nijmegen-link-list-item-hover-color,#116253)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--focus,.nijmegen-link-list__link:any-link:focus{--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;background-color:var(--utrecht-link-focus-background-color,transparent);color:var(--nijmegen-link-list-item-focus-color,#000);text-decoration:var(--nijmegen-link-list-item-focus-text-decoration,none);text-decoration-skip-ink:none}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--focus:before,.nijmegen-link-list__link:any-link:focus:before{background-color:var(--nijmegen-link-list-item-focus-color,#000)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--focus-visible,.nijmegen-link-list__link:any-link:focus-visible{--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;--_utrecht-focus-ring-box-shadow:0 0 0 var(--utrecht-focus-outline-width,0) var(--utrecht-focus-inverse-outline-color,transparent);--_utrecht-link-state-text-decoration:var(
|
|
120
|
+
--utrecht-link-focus-visible-text-decoration,var(--utrecht-link-focus-text-decoration)
|
|
121
|
+
);--_utrecht-link-state-text-decoration-thickness:var(
|
|
122
|
+
--utrecht-link-focus-visible-text-decoration-thickness,var(--utrecht-link-focus-text-decoration-thickness)
|
|
123
|
+
);background-color:var(--utrecht-link-focus-background-color,transparent);box-shadow:var(--_utrecht-focus-ring-box-shadow);color:var(--nijmegen-link-list-item-focus-visible-color,#000);outline-color:var(--utrecht-focus-outline-color,revert);outline-offset:var(--utrecht-focus-outline-offset,revert);outline-style:var(--utrecht-focus-outline-style,revert);outline-width:var(--utrecht-focus-outline-width,revert);text-decoration-skip-ink:none;z-index:1;z-index:var(--utrecht-stack-focus-z-index,1)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--focus-visible:before,.nijmegen-link-list__link:any-link:focus-visible:before{background-color:var(--nijmegen-link-list-item-focus-visible-color,#000)}.nijmegen-link-list__link:any-link.nijmegen-link-list__link--visited,.nijmegen-link-list__link:any-link:visited{--_utrecht-link-forced-colors-color:visitedtext;--_utrecht-link-state-color:var(--utrecht-link-visited-color)}.nijmegen-link-list__link:not(.nijmegen-link-list__link--no-chevron):before{background-color:var(--utrecht-link-color);content:"";display:inline-block;height:var(--nijmegen-icon-functional-size-height,.875rem);mask-image:var(--nijmegen-link-list-icon,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 6 6 6-6 6"/></svg>'));mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-icon-functional-size-width,1.5rem)}.nijmegen-footer{background-color:var(--nijmegen-page-footer-background-color);color:var(--nijmegen-page-footer-color)}.nijmegen-footer .utrecht-heading-4,.nijmegen-footer .utrecht-paragraph{color:inherit}.nijmegen-footer .utrecht-link{color:inherit;text-decoration-color:inherit}.nijmegen-footer .utrecht-link:any-link{color:inherit;text-decoration-color:inherit}.nijmegen-footer .utrecht-link:focus{color:var(--nijmegen-link-list-item-focus-color,#000);text-decoration:var(--nijmegen-link-list-item-focus-text-decoration,none)}.nijmegen-footer .utrecht-link:focus-visible{color:var(--nijmegen-link-list-item-focus-visible-color,#000)}.nijmegen-footer .nijmegen-link-list__link{color:inherit}.nijmegen-footer .nijmegen-link-list__link:before{background-color:var(--nijmegen-page-footer-color)}.nijmegen-footer .nijmegen-link-list__link.nijmegen-link-list__link--hover,.nijmegen-footer .nijmegen-link-list__link:hover{color:inherit}.nijmegen-footer .nijmegen-link-list__link.nijmegen-link-list__link--hover:before,.nijmegen-footer .nijmegen-link-list__link:hover:before{background-color:var(--nijmegen-page-footer-color)}.nijmegen-footer__container{margin-inline-end:auto;margin-inline-start:auto;max-width:var(--nijmegen-page-footer-content-max-inline-size);width:100%}.nijmegen-footer__main{gap:var(--nijmegen-page-footer-content-column-gap);padding-block-end:var(--nijmegen-page-footer-main-footer-content-padding-block-end);padding-block-start:var(--nijmegen-page-footer-main-footer-content-padding-block-start);padding-inline-end:var(--nijmegen-page-footer-main-footer-content-padding-inline-end);padding-inline-start:var(--nijmegen-page-footer-main-footer-content-padding-inline-start)}@media (width < 1024px){.nijmegen-footer__main{display:flex;flex-direction:column}}@media (width >= 1024px){.nijmegen-footer__main{display:grid;grid-auto-rows:1fr;grid-template-columns:1fr 1fr 1fr}}.nijmegen-footer__sub{border-top:var(--nijmegen-page-footer-sub-footer-border-width,1px);border-top-color:var(--nijmegen-page-footer-sub-footer-border-color,#6d6d6d);border-top-style:var(--nijmegen-page-footer-sub-footer-border-style,solid);display:flex;justify-content:space-between;padding-block-end:var(--nijmegen-page-footer-sub-footer-content-padding-block-end);padding-block-start:var(--nijmegen-page-footer-sub-footer-content-padding-block-start);padding-inline-end:var(--nijmegen-page-footer-sub-footer-content-padding-inline-end);padding-inline-start:var(--nijmegen-page-footer-sub-footer-content-padding-inline-start)}@media (width < 1024px){.nijmegen-footer__sub{flex-direction:column-reverse;gap:var(--nijmegen-page-footer-content-row-gap)}}.nijmegen-footer__sub ul{display:flex;flex-wrap:wrap;gap:var(--nijmegen-page-footer-sub-footer-content-gap,1rem);list-style:none;margin:0;padding:0}.nijmegen-footer__sub ul li{display:inline-flex}.nijmegen-footer__col{display:flex;flex-direction:column;gap:var(--nijmegen-page-footer-content-row-gap)}.nijmegen-footer__block{display:flex;flex-direction:column;gap:var(--nijmegen-page-footer-footer-block-column-gap)}.nijmegen-breadcrumb{font-family:var(--nijmegen-breadcrumb-nav-font-family);font-size:var(--nijmegen-breadcrumb-nav-font-size);font-weight:var(--nijmegen-breadcrumb-nav-font-weight);line-height:var(--nijmegen-breadcrumb-nav-line-height)}.nijmegen-breadcrumb__list{block-size:100%;display:flex;gap:var(--nijmegen-breadcrumb-nav-column-gap);margin-block-end:0;margin-block-start:0}@media (width <= 576px){.nijmegen-breadcrumb__list{display:none}}ol.nijmegen-breadcrumb__list{list-style:none;padding-inline-start:0}.nijmegen-breadcrumb__item{align-items:center;display:flex}.nijmegen-breadcrumb__item:not(:last-child):after{background-color:var(--nijmegen-breadcrumb-nav-separator-color);content:"";display:inline-block;height:var(--nijmegen-breadcrumb-nav-separator-size);margin-inline-start:var(--nijmegen-breadcrumb-nav-column-gap);mask-image:var(--nijmegen-header-item-open-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-right"><path d="M0 0h24v24H0z" stroke="none"/><path d="m9 6 6 6-6 6"/></svg>'));mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-breadcrumb-nav-separator-size)}.nijmegen-breadcrumb__link{--utrecht-icon-size:var(--utrecht-link-icon-size,1em);color:var(--_utrecht-link-state-color,var(--utrecht-link-color,var(--_utrecht-link-forced-colors-color)));padding-block-end:var(--nijmegen-breadcrumb-nav-link-padding-block-end);padding-block-start:var(--nijmegen-breadcrumb-nav-link-padding-block-start);padding-inline-end:var(--nijmegen-breadcrumb-nav-link-padding-inline-end);padding-inline-start:var(--nijmegen-breadcrumb-nav-link-padding-inline-start);text-decoration:var(--nijmegen-breadcrumb-nav-link-text-decoration)}.nijmegen-breadcrumb__link--mobile{display:inline-flex;gap:var(--nijmegen-breadcrumb-nav-link-icon-column-gap)}@media (width >= 576px){.nijmegen-breadcrumb__link--mobile{display:none}}.nijmegen-breadcrumb__link--mobile:before{background-color:currentColor;content:"";display:inline-block;height:var(--nijmegen-breadcrumb-nav-link-icon-size,1.5rem);mask-image:var(--nijmegen-breadcrumb-nav-link-icon-image,url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-arrow-left"><path d="M0 0h24v24H0z" stroke="none"/><path d="M5 12h14M5 12l6 6M5 12l6-6"/></svg>'));mask-position:center;mask-repeat:no-repeat;mask-size:100%;width:var(--nijmegen-breadcrumb-nav-link-icon-size,1.5rem)}.nijmegen-breadcrumb__link--disabled{color:var(--nijmegen-breadcrumb-nav-link-current-color);cursor:none;pointer-events:none}.nijmegen-breadcrumb__link--active,.nijmegen-breadcrumb__link:active{color:var(--nijmegen-breadcrumb-nav-link-active-color);text-decoration:var(--nijmegen-breadcrumb-nav-link-active-text-decoration)}.nijmegen-breadcrumb__link--hover,.nijmegen-breadcrumb__link:hover{color:var(--nijmegen-breadcrumb-nav-link-hover-color);text-decoration:var(--nijmegen-breadcrumb-nav-link-hover-text-decoration)}.nijmegen-breadcrumb__link--focus,.nijmegen-breadcrumb__link:has(:focus){--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;--_utrecht-focus-ring-box-shadow:0 0 0 var(--utrecht-focus-outline-width,0) var(--utrecht-focus-inverse-outline-color,transparent);background-color:var(--utrecht-link-focus-background-color,transparent);box-shadow:var(--_utrecht-focus-ring-box-shadow);outline-color:var(--utrecht-focus-outline-color,revert);outline-offset:var(--utrecht-focus-outline-offset,revert);outline-style:var(--utrecht-focus-outline-style,revert);outline-width:var(--utrecht-focus-outline-width,revert);text-decoration-skip-ink:none;z-index:1}.nijmegen-breadcrumb__link--focus-visible,.nijmegen-breadcrumb__link:focus-visible{--_utrecht-link-state-color:var(--utrecht-link-focus-color);text-decoration-skip:none;--_utrecht-focus-ring-box-shadow:0 0 0 var(--utrecht-focus-outline-width,0) var(--utrecht-focus-inverse-outline-color,transparent);background-color:var(--utrecht-link-focus-background-color,transparent);box-shadow:var(--_utrecht-focus-ring-box-shadow);outline-color:var(--utrecht-focus-outline-color,revert);outline-offset:var(--utrecht-focus-outline-offset,revert);outline-style:var(--utrecht-focus-outline-style,revert);outline-width:var(--utrecht-focus-outline-width,revert);text-decoration-skip-ink:none;z-index:1}
|