@ilo-org/styles 0.11.1 → 0.11.3-next.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/build/css/components/index.css +254 -270
- package/build/css/components/index.css.map +1 -1
- package/build/css/global.css +6 -1
- package/build/css/global.css.map +1 -1
- package/build/css/index.css +259 -270
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +274 -288
- package/build/css/monorepo.css.map +1 -1
- package/build/minified/index.css +1 -1
- package/build/minified/index.css.map +1 -1
- package/build/minified/monorepo.css +1 -1
- package/build/minified/monorepo.css.map +1 -1
- package/css/components/accordion.css +1 -1
- package/css/components/breadcrumb.css +1 -1
- package/css/components/callout.css +1 -1
- package/css/components/card.css +1 -1
- package/css/components/hero.css +1 -1
- package/css/components/herocard.css +1 -1
- package/css/components/linklist.css +1 -1
- package/css/components/navigation.css +1 -1
- package/css/components/profile.css +1 -1
- package/css/components/statcard.css +1 -1
- package/css/components/tabs.css +1 -1
- package/css/components/tag.css +1 -1
- package/css/global.css +1 -1
- package/css/global.css.map +1 -1
- package/css/index.css +12 -3
- package/css/index.css.map +1 -1
- package/css/monorepo.css +12 -3
- package/css/monorepo.css.map +1 -1
- package/package.json +3 -3
- package/scss/_reset.scss +6 -0
- package/scss/components/_accordion.scss +28 -50
- package/scss/components/_breadcrumb.scss +4 -1
- package/scss/components/_callout.scss +11 -13
- package/scss/components/_card.scss +4 -0
- package/scss/components/_hero.scss +17 -4
- package/scss/components/_linklist.scss +2 -0
- package/scss/components/_navigation.scss +3 -5
- package/scss/components/_profile.scss +116 -138
- package/scss/components/_statcard.scss +11 -2
- package/scss/components/_tabs.scss +2 -1
- package/scss/components/_tag.scss +4 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
7
7
|
* TOKENS:
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Do not edit directly
|
|
14
|
-
* Generated on
|
|
14
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
15
15
|
*/
|
|
16
16
|
/**
|
|
17
17
|
* TOKENS:
|
|
@@ -20,28 +20,27 @@
|
|
|
20
20
|
* MAPS:
|
|
21
21
|
*/
|
|
22
22
|
.ilo--accordion--button {
|
|
23
|
+
display: flex;
|
|
23
24
|
align-items: center;
|
|
25
|
+
flex-direction: row;
|
|
26
|
+
justify-content: space-between;
|
|
27
|
+
width: 100%;
|
|
28
|
+
margin: 0;
|
|
29
|
+
padding: 0.9646302251rem 1.9292604502rem 0.9646302251rem 0;
|
|
24
30
|
background-color: rgb(255, 255, 255);
|
|
25
31
|
background-position: calc(100% - 0.3215434084rem) center;
|
|
26
32
|
background-repeat: no-repeat;
|
|
27
33
|
background-size: 1.2861736334rem 1.2861736334rem;
|
|
28
34
|
border: none;
|
|
29
35
|
border-top: 2px solid rgb(237, 240, 242);
|
|
30
|
-
color: rgb(35, 0, 80);
|
|
31
|
-
display: flex;
|
|
32
36
|
fill: rgb(35, 0, 80);
|
|
33
|
-
flex-direction: row;
|
|
34
37
|
font-family: Overpass, Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
38
|
+
color: rgb(35, 0, 80);
|
|
35
39
|
font-weight: 500;
|
|
36
40
|
font-size: 16px;
|
|
37
41
|
letter-spacing: -0.02em;
|
|
38
42
|
line-height: 21.6px;
|
|
39
|
-
|
|
40
|
-
margin: 0;
|
|
41
|
-
padding: 0.9646302251rem 1.9292604502rem 0.9646302251rem 0;
|
|
42
|
-
text-align: left;
|
|
43
|
-
transition: border 150ms ease-out, background 150ms ease-out, color 150ms ease-out;
|
|
44
|
-
width: 100%;
|
|
43
|
+
transition: all 500ms ease-in-out;
|
|
45
44
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='M18 11H13V6H11V11H6V13H11V18H13V13H18V11Z'/%3e%3c/svg%3e");
|
|
46
45
|
}
|
|
47
46
|
.ilo--accordion--button--large {
|
|
@@ -84,53 +83,27 @@
|
|
|
84
83
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='M18 11H13V6H11V11H6V13H11V18H13V13H18V11Z'/%3e%3c/svg%3e");
|
|
85
84
|
}
|
|
86
85
|
.ilo--accordion--panel {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
font-family: Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
90
|
-
position: relative;
|
|
91
|
-
height: 0px;
|
|
86
|
+
max-height: 0;
|
|
87
|
+
transition: all 500ms cubic-bezier(0, 1, 0, 1);
|
|
92
88
|
overflow: hidden;
|
|
93
|
-
transition: height 225ms ease-out, padding 225ms ease-out;
|
|
94
|
-
font-size: 16px;
|
|
95
|
-
letter-spacing: -0.02em;
|
|
96
|
-
line-height: 21.6px;
|
|
97
89
|
}
|
|
98
90
|
.ilo--accordion--panel .ilo--accordion--innerpanel {
|
|
99
|
-
padding-bottom:
|
|
91
|
+
padding-bottom: 0.6430868167rem;
|
|
100
92
|
padding-top: 0.4287245445rem;
|
|
101
93
|
}
|
|
102
94
|
.ilo--accordion--panel--open {
|
|
103
|
-
height:
|
|
104
|
-
transition:
|
|
95
|
+
max-height: 100vh;
|
|
96
|
+
transition: all 500ms ease-in-out;
|
|
105
97
|
}
|
|
106
|
-
.ilo--accordion--panel__scroll {
|
|
107
|
-
max-height:
|
|
98
|
+
.ilo--accordion--panel--open.ilo--accordion--panel__scroll {
|
|
99
|
+
max-height: 300px;
|
|
108
100
|
overflow-y: auto;
|
|
109
101
|
padding-right: 1.7148981779rem;
|
|
110
102
|
}
|
|
111
|
-
.ilo--accordion--panel.collapsing, .ilo--accordion--panel.expanding {
|
|
112
|
-
height: 0;
|
|
113
|
-
position: relative;
|
|
114
|
-
overflow: hidden;
|
|
115
|
-
visibility: visible;
|
|
116
|
-
-webkit-transition-property: height, padding, visibility;
|
|
117
|
-
transition-property: height, padding, visibility;
|
|
118
|
-
transition-duration: attr(data-transition);
|
|
119
|
-
-webkit-transition-duration: attr(data-transition);
|
|
120
|
-
transition-timing-function: ease;
|
|
121
|
-
-webkit-transition-timing-function: ease;
|
|
122
|
-
}
|
|
123
|
-
@media screen and (min-width: 610px) {
|
|
124
|
-
.ilo--accordion--panel {
|
|
125
|
-
font-size: 18.66px;
|
|
126
|
-
letter-spacing: -0.02em;
|
|
127
|
-
line-height: 24.26px;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
103
|
|
|
131
104
|
/**
|
|
132
105
|
* Do not edit directly
|
|
133
|
-
* Generated on
|
|
106
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
134
107
|
*/
|
|
135
108
|
/**
|
|
136
109
|
* TOKENS:
|
|
@@ -155,7 +128,7 @@
|
|
|
155
128
|
}
|
|
156
129
|
/**
|
|
157
130
|
* Do not edit directly
|
|
158
|
-
* Generated on
|
|
131
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
159
132
|
*/
|
|
160
133
|
/**
|
|
161
134
|
* TOKENS:
|
|
@@ -198,6 +171,10 @@
|
|
|
198
171
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3e%3cpath fill='rgb(35, 0, 80)' d='M0.7%2c8.4C0.7%2c8.3%2c0.6%2c8.1%2c0.6%2c8s0-0.3%2c0.1-0.4L6.3%2c0l1.1%2c0.8L2.2%2c8l5.2%2c7.2L6.3%2c16L0.7%2c8.4z'/%3e%3c/svg%3e");
|
|
199
172
|
}
|
|
200
173
|
.ilo--breadcrumb--link--label {
|
|
174
|
+
white-space: nowrap;
|
|
175
|
+
overflow: hidden;
|
|
176
|
+
text-overflow: ellipsis;
|
|
177
|
+
max-width: 40ch;
|
|
201
178
|
font-family: Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
202
179
|
font-weight: 400;
|
|
203
180
|
font-size: 11.94px;
|
|
@@ -411,7 +388,7 @@
|
|
|
411
388
|
|
|
412
389
|
/**
|
|
413
390
|
* Do not edit directly
|
|
414
|
-
* Generated on
|
|
391
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
415
392
|
*/
|
|
416
393
|
/**
|
|
417
394
|
* TOKENS:
|
|
@@ -421,7 +398,7 @@
|
|
|
421
398
|
*/
|
|
422
399
|
/**
|
|
423
400
|
* Do not edit directly
|
|
424
|
-
* Generated on
|
|
401
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
425
402
|
*/
|
|
426
403
|
/**
|
|
427
404
|
* TOKENS:
|
|
@@ -446,7 +423,7 @@
|
|
|
446
423
|
}
|
|
447
424
|
/**
|
|
448
425
|
* Do not edit directly
|
|
449
|
-
* Generated on
|
|
426
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
450
427
|
*/
|
|
451
428
|
/**
|
|
452
429
|
* TOKENS:
|
|
@@ -736,7 +713,7 @@
|
|
|
736
713
|
|
|
737
714
|
/**
|
|
738
715
|
* Do not edit directly
|
|
739
|
-
* Generated on
|
|
716
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
740
717
|
*/
|
|
741
718
|
/**
|
|
742
719
|
* TOKENS:
|
|
@@ -763,24 +740,21 @@
|
|
|
763
740
|
padding: 1.3933547696rem 0.6430868167rem;
|
|
764
741
|
width: 2.1436227224rem;
|
|
765
742
|
}
|
|
743
|
+
.ilo--callout--sidebar .ilo--callout--icon {
|
|
744
|
+
position: relative;
|
|
745
|
+
top: 0.0803858521rem;
|
|
746
|
+
}
|
|
766
747
|
.ilo--callout--content {
|
|
767
748
|
padding: 1.3933547696rem 1.1789924973rem 1.2861736334rem;
|
|
768
749
|
width: 100%;
|
|
769
|
-
|
|
770
|
-
.ilo--callout--copy {
|
|
771
|
-
font-size: 14.93px;
|
|
772
|
-
letter-spacing: normal;
|
|
773
|
-
line-height: 20.3px;
|
|
774
|
-
}
|
|
775
|
-
.ilo--callout--copy:not(:last-child) {
|
|
776
|
-
margin-bottom: 1.2861736334rem;
|
|
750
|
+
font-size: 0.8001071811rem;
|
|
777
751
|
}
|
|
778
752
|
.ilo--callout--header {
|
|
779
753
|
display: flex;
|
|
780
754
|
justify-content: space-between;
|
|
781
755
|
padding: 0 0 1.2861736334rem;
|
|
782
756
|
}
|
|
783
|
-
.ilo--callout--
|
|
757
|
+
.ilo--callout--title {
|
|
784
758
|
font-size: 16px;
|
|
785
759
|
letter-spacing: -0.02em;
|
|
786
760
|
line-height: 21.6px;
|
|
@@ -797,7 +771,7 @@
|
|
|
797
771
|
cursor: pointer;
|
|
798
772
|
font-family: Overpass, Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
799
773
|
font-weight: 500;
|
|
800
|
-
padding-right:
|
|
774
|
+
padding-right: 32px;
|
|
801
775
|
position: relative;
|
|
802
776
|
}
|
|
803
777
|
.ilo--callout--toggle--icon {
|
|
@@ -807,11 +781,11 @@
|
|
|
807
781
|
display: inline-block;
|
|
808
782
|
height: 24px;
|
|
809
783
|
position: absolute;
|
|
810
|
-
right:
|
|
811
|
-
top:
|
|
784
|
+
right: 0;
|
|
785
|
+
top: 11px;
|
|
812
786
|
transform: translateY(-50%) rotate(0);
|
|
813
787
|
transition: transform 225ms ease-out;
|
|
814
|
-
width:
|
|
788
|
+
width: 24px;
|
|
815
789
|
}
|
|
816
790
|
.ilo--callout--footer {
|
|
817
791
|
padding: 1.2861736334rem 0 0 0;
|
|
@@ -866,7 +840,7 @@
|
|
|
866
840
|
|
|
867
841
|
/**
|
|
868
842
|
* Do not edit directly
|
|
869
|
-
* Generated on
|
|
843
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
870
844
|
*/
|
|
871
845
|
/**
|
|
872
846
|
* TOKENS:
|
|
@@ -876,7 +850,7 @@
|
|
|
876
850
|
*/
|
|
877
851
|
/**
|
|
878
852
|
* Do not edit directly
|
|
879
|
-
* Generated on
|
|
853
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
880
854
|
*/
|
|
881
855
|
/**
|
|
882
856
|
* TOKENS:
|
|
@@ -901,7 +875,7 @@
|
|
|
901
875
|
}
|
|
902
876
|
/**
|
|
903
877
|
* Do not edit directly
|
|
904
|
-
* Generated on
|
|
878
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
905
879
|
*/
|
|
906
880
|
/**
|
|
907
881
|
* TOKENS:
|
|
@@ -919,7 +893,7 @@
|
|
|
919
893
|
|
|
920
894
|
/**
|
|
921
895
|
* Do not edit directly
|
|
922
|
-
* Generated on
|
|
896
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
923
897
|
*/
|
|
924
898
|
/**
|
|
925
899
|
* TOKENS:
|
|
@@ -996,6 +970,9 @@
|
|
|
996
970
|
width: 40px;
|
|
997
971
|
z-index: 1;
|
|
998
972
|
}
|
|
973
|
+
.ilo--card--wrap {
|
|
974
|
+
height: 100%;
|
|
975
|
+
}
|
|
999
976
|
.ilo--card--wrapper {
|
|
1000
977
|
max-width: var(--max-width);
|
|
1001
978
|
}
|
|
@@ -1130,7 +1107,7 @@
|
|
|
1130
1107
|
|
|
1131
1108
|
/**
|
|
1132
1109
|
* Do not edit directly
|
|
1133
|
-
* Generated on
|
|
1110
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
1134
1111
|
*/
|
|
1135
1112
|
/**
|
|
1136
1113
|
* TOKENS:
|
|
@@ -1298,7 +1275,7 @@
|
|
|
1298
1275
|
|
|
1299
1276
|
/**
|
|
1300
1277
|
* Do not edit directly
|
|
1301
|
-
* Generated on
|
|
1278
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
1302
1279
|
*/
|
|
1303
1280
|
/**
|
|
1304
1281
|
* TOKENS:
|
|
@@ -1392,7 +1369,7 @@
|
|
|
1392
1369
|
|
|
1393
1370
|
/**
|
|
1394
1371
|
* Do not edit directly
|
|
1395
|
-
* Generated on
|
|
1372
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
1396
1373
|
*/
|
|
1397
1374
|
/**
|
|
1398
1375
|
* TOKENS:
|
|
@@ -1529,7 +1506,7 @@
|
|
|
1529
1506
|
|
|
1530
1507
|
/**
|
|
1531
1508
|
* Do not edit directly
|
|
1532
|
-
* Generated on
|
|
1509
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
1533
1510
|
*/
|
|
1534
1511
|
/**
|
|
1535
1512
|
* TOKENS:
|
|
@@ -1671,7 +1648,7 @@
|
|
|
1671
1648
|
|
|
1672
1649
|
/**
|
|
1673
1650
|
* Do not edit directly
|
|
1674
|
-
* Generated on
|
|
1651
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
1675
1652
|
*/
|
|
1676
1653
|
/**
|
|
1677
1654
|
* TOKENS:
|
|
@@ -1820,7 +1797,7 @@
|
|
|
1820
1797
|
|
|
1821
1798
|
/**
|
|
1822
1799
|
* Do not edit directly
|
|
1823
|
-
* Generated on
|
|
1800
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
1824
1801
|
*/
|
|
1825
1802
|
/**
|
|
1826
1803
|
* TOKENS:
|
|
@@ -1935,7 +1912,7 @@
|
|
|
1935
1912
|
|
|
1936
1913
|
/**
|
|
1937
1914
|
* Do not edit directly
|
|
1938
|
-
* Generated on
|
|
1915
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
1939
1916
|
*/
|
|
1940
1917
|
/**
|
|
1941
1918
|
* TOKENS:
|
|
@@ -1965,7 +1942,9 @@
|
|
|
1965
1942
|
}
|
|
1966
1943
|
.ilo--card__type__stat .ilo--card--content {
|
|
1967
1944
|
display: flex;
|
|
1968
|
-
flex-
|
|
1945
|
+
flex-flow: column;
|
|
1946
|
+
align-items: flex-start;
|
|
1947
|
+
justify-content: flex-start;
|
|
1969
1948
|
height: 100%;
|
|
1970
1949
|
}
|
|
1971
1950
|
.right-to-left .ilo--card__type__stat .ilo--card--content {
|
|
@@ -1988,16 +1967,22 @@
|
|
|
1988
1967
|
margin-bottom: 1.6734954235rem;
|
|
1989
1968
|
width: 100%;
|
|
1990
1969
|
}
|
|
1970
|
+
.ilo--card__type__stat .ilo--card--source {
|
|
1971
|
+
display: flex;
|
|
1972
|
+
flex: auto;
|
|
1973
|
+
flex-flow: column;
|
|
1974
|
+
justify-content: flex-end;
|
|
1975
|
+
align-items: flex-start;
|
|
1976
|
+
}
|
|
1991
1977
|
.ilo--card__type__stat .ilo--link {
|
|
1992
1978
|
font-size: 11.94px;
|
|
1993
1979
|
letter-spacing: -0.02em;
|
|
1994
1980
|
line-height: 16.24px;
|
|
1995
|
-
align-self: flex-end;
|
|
1996
1981
|
}
|
|
1997
1982
|
|
|
1998
1983
|
/**
|
|
1999
1984
|
* Do not edit directly
|
|
2000
|
-
* Generated on
|
|
1985
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2001
1986
|
*/
|
|
2002
1987
|
/**
|
|
2003
1988
|
* TOKENS:
|
|
@@ -2072,7 +2057,7 @@
|
|
|
2072
2057
|
|
|
2073
2058
|
/**
|
|
2074
2059
|
* Do not edit directly
|
|
2075
|
-
* Generated on
|
|
2060
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2076
2061
|
*/
|
|
2077
2062
|
/**
|
|
2078
2063
|
* TOKENS:
|
|
@@ -2124,7 +2109,7 @@
|
|
|
2124
2109
|
|
|
2125
2110
|
/**
|
|
2126
2111
|
* Do not edit directly
|
|
2127
|
-
* Generated on
|
|
2112
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2128
2113
|
*/
|
|
2129
2114
|
/**
|
|
2130
2115
|
* TOKENS:
|
|
@@ -2201,7 +2186,7 @@
|
|
|
2201
2186
|
|
|
2202
2187
|
/**
|
|
2203
2188
|
* Do not edit directly
|
|
2204
|
-
* Generated on
|
|
2189
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2205
2190
|
*/
|
|
2206
2191
|
/**
|
|
2207
2192
|
* TOKENS:
|
|
@@ -2282,7 +2267,7 @@
|
|
|
2282
2267
|
|
|
2283
2268
|
/**
|
|
2284
2269
|
* Do not edit directly
|
|
2285
|
-
* Generated on
|
|
2270
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2286
2271
|
*/
|
|
2287
2272
|
/**
|
|
2288
2273
|
* TOKENS:
|
|
@@ -2292,7 +2277,7 @@
|
|
|
2292
2277
|
*/
|
|
2293
2278
|
/**
|
|
2294
2279
|
* Do not edit directly
|
|
2295
|
-
* Generated on
|
|
2280
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2296
2281
|
*/
|
|
2297
2282
|
/**
|
|
2298
2283
|
* TOKENS:
|
|
@@ -2302,7 +2287,7 @@
|
|
|
2302
2287
|
*/
|
|
2303
2288
|
/**
|
|
2304
2289
|
* Do not edit directly
|
|
2305
|
-
* Generated on
|
|
2290
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2306
2291
|
*/
|
|
2307
2292
|
/**
|
|
2308
2293
|
* TOKENS:
|
|
@@ -2312,7 +2297,7 @@
|
|
|
2312
2297
|
*/
|
|
2313
2298
|
/**
|
|
2314
2299
|
* Do not edit directly
|
|
2315
|
-
* Generated on
|
|
2300
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2316
2301
|
*/
|
|
2317
2302
|
/**
|
|
2318
2303
|
* TOKENS:
|
|
@@ -2438,7 +2423,7 @@
|
|
|
2438
2423
|
|
|
2439
2424
|
/**
|
|
2440
2425
|
* Do not edit directly
|
|
2441
|
-
* Generated on
|
|
2426
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2442
2427
|
*/
|
|
2443
2428
|
/**
|
|
2444
2429
|
* TOKENS:
|
|
@@ -2455,7 +2440,7 @@
|
|
|
2455
2440
|
|
|
2456
2441
|
/**
|
|
2457
2442
|
* Do not edit directly
|
|
2458
|
-
* Generated on
|
|
2443
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2459
2444
|
*/
|
|
2460
2445
|
/**
|
|
2461
2446
|
* TOKENS:
|
|
@@ -2543,7 +2528,7 @@
|
|
|
2543
2528
|
|
|
2544
2529
|
/**
|
|
2545
2530
|
* Do not edit directly
|
|
2546
|
-
* Generated on
|
|
2531
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2547
2532
|
*/
|
|
2548
2533
|
/**
|
|
2549
2534
|
* TOKENS:
|
|
@@ -2553,7 +2538,7 @@
|
|
|
2553
2538
|
*/
|
|
2554
2539
|
/**
|
|
2555
2540
|
* Do not edit directly
|
|
2556
|
-
* Generated on
|
|
2541
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2557
2542
|
*/
|
|
2558
2543
|
/**
|
|
2559
2544
|
* TOKENS:
|
|
@@ -2563,7 +2548,7 @@
|
|
|
2563
2548
|
*/
|
|
2564
2549
|
/**
|
|
2565
2550
|
* Do not edit directly
|
|
2566
|
-
* Generated on
|
|
2551
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2567
2552
|
*/
|
|
2568
2553
|
/**
|
|
2569
2554
|
* TOKENS:
|
|
@@ -2616,7 +2601,7 @@
|
|
|
2616
2601
|
|
|
2617
2602
|
/**
|
|
2618
2603
|
* Do not edit directly
|
|
2619
|
-
* Generated on
|
|
2604
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2620
2605
|
*/
|
|
2621
2606
|
/**
|
|
2622
2607
|
* TOKENS:
|
|
@@ -2701,7 +2686,7 @@
|
|
|
2701
2686
|
|
|
2702
2687
|
/**
|
|
2703
2688
|
* Do not edit directly
|
|
2704
|
-
* Generated on
|
|
2689
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2705
2690
|
*/
|
|
2706
2691
|
/**
|
|
2707
2692
|
* TOKENS:
|
|
@@ -2798,7 +2783,7 @@
|
|
|
2798
2783
|
|
|
2799
2784
|
/**
|
|
2800
2785
|
* Do not edit directly
|
|
2801
|
-
* Generated on
|
|
2786
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2802
2787
|
*/
|
|
2803
2788
|
/**
|
|
2804
2789
|
* TOKENS:
|
|
@@ -2839,7 +2824,7 @@
|
|
|
2839
2824
|
|
|
2840
2825
|
/**
|
|
2841
2826
|
* Do not edit directly
|
|
2842
|
-
* Generated on
|
|
2827
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2843
2828
|
*/
|
|
2844
2829
|
/**
|
|
2845
2830
|
* TOKENS:
|
|
@@ -2960,7 +2945,7 @@
|
|
|
2960
2945
|
|
|
2961
2946
|
/**
|
|
2962
2947
|
* Do not edit directly
|
|
2963
|
-
* Generated on
|
|
2948
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2964
2949
|
*/
|
|
2965
2950
|
/**
|
|
2966
2951
|
* TOKENS:
|
|
@@ -2970,7 +2955,7 @@
|
|
|
2970
2955
|
*/
|
|
2971
2956
|
/**
|
|
2972
2957
|
* Do not edit directly
|
|
2973
|
-
* Generated on
|
|
2958
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2974
2959
|
*/
|
|
2975
2960
|
/**
|
|
2976
2961
|
* TOKENS:
|
|
@@ -2995,7 +2980,7 @@
|
|
|
2995
2980
|
}
|
|
2996
2981
|
/**
|
|
2997
2982
|
* Do not edit directly
|
|
2998
|
-
* Generated on
|
|
2983
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
2999
2984
|
*/
|
|
3000
2985
|
/**
|
|
3001
2986
|
* TOKENS:
|
|
@@ -3362,7 +3347,7 @@
|
|
|
3362
3347
|
|
|
3363
3348
|
/**
|
|
3364
3349
|
* Do not edit directly
|
|
3365
|
-
* Generated on
|
|
3350
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
3366
3351
|
*/
|
|
3367
3352
|
/**
|
|
3368
3353
|
* TOKENS:
|
|
@@ -3485,7 +3470,7 @@
|
|
|
3485
3470
|
|
|
3486
3471
|
/**
|
|
3487
3472
|
* Do not edit directly
|
|
3488
|
-
* Generated on
|
|
3473
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
3489
3474
|
*/
|
|
3490
3475
|
/**
|
|
3491
3476
|
* TOKENS:
|
|
@@ -3494,7 +3479,9 @@
|
|
|
3494
3479
|
* MAPS:
|
|
3495
3480
|
*/
|
|
3496
3481
|
.hero {
|
|
3497
|
-
--
|
|
3482
|
+
--added-offset: 0;
|
|
3483
|
+
--base-offset: calc(((100vw - 1300px) / 2));
|
|
3484
|
+
--card-padding-start: 71px;
|
|
3498
3485
|
--corner-cut-height: 40px;
|
|
3499
3486
|
width: 100%;
|
|
3500
3487
|
display: grid;
|
|
@@ -3589,8 +3576,16 @@
|
|
|
3589
3576
|
--card-width: 998px;
|
|
3590
3577
|
}
|
|
3591
3578
|
.hero__card-justify__start, .hero__card-justify__offset {
|
|
3592
|
-
--card-padding-start: max(16px, min(
|
|
3593
|
-
|
|
3579
|
+
--card-padding-start: max(16px, min(
|
|
3580
|
+
var(--base-offset) + var(--added-offset),
|
|
3581
|
+
71px
|
|
3582
|
+
));
|
|
3583
|
+
--col-1-lg: calc(
|
|
3584
|
+
var(--base-offset) - 71px + var(--added-offset)
|
|
3585
|
+
);
|
|
3586
|
+
}
|
|
3587
|
+
.hero__card-justify__offset {
|
|
3588
|
+
--added-offset: 109px;
|
|
3594
3589
|
}
|
|
3595
3590
|
.hero__card-justify__center {
|
|
3596
3591
|
--col-1-lg: calc((100% - var(--card-width)) / 2);
|
|
@@ -3693,10 +3688,10 @@
|
|
|
3693
3688
|
left: 0;
|
|
3694
3689
|
bottom: 0;
|
|
3695
3690
|
}
|
|
3696
|
-
.hero__card-align__bottom.hero__card-justify__start .hero--caption {
|
|
3691
|
+
.hero__card-align__bottom.hero__card-justify__start .hero--caption, .hero__card-align__bottom.hero__card-justify__offset .hero--caption {
|
|
3697
3692
|
grid-area: 1/1/3/3;
|
|
3698
3693
|
}
|
|
3699
|
-
.hero__card-align__bottom.hero__card-justify__start .hero--caption .hero--caption--wrapper {
|
|
3694
|
+
.hero__card-align__bottom.hero__card-justify__start .hero--caption .hero--caption--wrapper, .hero__card-align__bottom.hero__card-justify__offset .hero--caption .hero--caption--wrapper {
|
|
3700
3695
|
background: rgb(45, 45, 45);
|
|
3701
3696
|
height: 27px;
|
|
3702
3697
|
width: 30px;
|
|
@@ -3709,7 +3704,7 @@
|
|
|
3709
3704
|
right: initial;
|
|
3710
3705
|
bottom: 0;
|
|
3711
3706
|
}
|
|
3712
|
-
.hero__card-align__bottom.hero__card-justify__start .hero--caption .hero--caption--wrapper::after {
|
|
3707
|
+
.hero__card-align__bottom.hero__card-justify__start .hero--caption .hero--caption--wrapper::after, .hero__card-align__bottom.hero__card-justify__offset .hero--caption .hero--caption--wrapper::after {
|
|
3713
3708
|
content: "";
|
|
3714
3709
|
position: absolute;
|
|
3715
3710
|
top: 0;
|
|
@@ -3752,13 +3747,17 @@
|
|
|
3752
3747
|
--col-1-lg: 1fr;
|
|
3753
3748
|
--col-2-lg: 30px;
|
|
3754
3749
|
--col-3-lg: var(--card-width);
|
|
3755
|
-
--col-4-lg: calc(
|
|
3750
|
+
--col-4-lg: calc(
|
|
3751
|
+
var(--base-offset) - 71px + var(--added-offset)
|
|
3752
|
+
);
|
|
3756
3753
|
}
|
|
3757
3754
|
.right-to-left .hero__card-justify__offset {
|
|
3758
3755
|
--col-1-lg: 1fr;
|
|
3759
3756
|
--col-2-lg: 30px;
|
|
3760
3757
|
--col-3-lg: var(--card-width);
|
|
3761
|
-
--col-4-lg: calc(
|
|
3758
|
+
--col-4-lg: calc(
|
|
3759
|
+
var(--base-offset) - 71px + var(--added-offset)
|
|
3760
|
+
);
|
|
3762
3761
|
}
|
|
3763
3762
|
.right-to-left .hero__card-justify__center {
|
|
3764
3763
|
--col-1-lg: calc(
|
|
@@ -3862,7 +3861,7 @@
|
|
|
3862
3861
|
|
|
3863
3862
|
/**
|
|
3864
3863
|
* Do not edit directly
|
|
3865
|
-
* Generated on
|
|
3864
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
3866
3865
|
*/
|
|
3867
3866
|
/**
|
|
3868
3867
|
* TOKENS:
|
|
@@ -3878,7 +3877,7 @@
|
|
|
3878
3877
|
@media screen and (min-width: 1024px) {
|
|
3879
3878
|
.ilo--hero-card {
|
|
3880
3879
|
padding-block: 56px;
|
|
3881
|
-
padding-inline-end:
|
|
3880
|
+
padding-inline-end: 71px;
|
|
3882
3881
|
padding-inline-start: var(--card-padding-start);
|
|
3883
3882
|
}
|
|
3884
3883
|
}
|
|
@@ -3998,7 +3997,7 @@
|
|
|
3998
3997
|
|
|
3999
3998
|
/**
|
|
4000
3999
|
* Do not edit directly
|
|
4001
|
-
* Generated on
|
|
4000
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4002
4001
|
*/
|
|
4003
4002
|
/**
|
|
4004
4003
|
* TOKENS:
|
|
@@ -4054,7 +4053,7 @@
|
|
|
4054
4053
|
|
|
4055
4054
|
/**
|
|
4056
4055
|
* Do not edit directly
|
|
4057
|
-
* Generated on
|
|
4056
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4058
4057
|
*/
|
|
4059
4058
|
/**
|
|
4060
4059
|
* TOKENS:
|
|
@@ -4196,7 +4195,7 @@
|
|
|
4196
4195
|
|
|
4197
4196
|
/**
|
|
4198
4197
|
* Do not edit directly
|
|
4199
|
-
* Generated on
|
|
4198
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4200
4199
|
*/
|
|
4201
4200
|
/**
|
|
4202
4201
|
* TOKENS:
|
|
@@ -4206,7 +4205,7 @@
|
|
|
4206
4205
|
*/
|
|
4207
4206
|
/**
|
|
4208
4207
|
* Do not edit directly
|
|
4209
|
-
* Generated on
|
|
4208
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4210
4209
|
*/
|
|
4211
4210
|
/**
|
|
4212
4211
|
* TOKENS:
|
|
@@ -4231,7 +4230,7 @@
|
|
|
4231
4230
|
}
|
|
4232
4231
|
/**
|
|
4233
4232
|
* Do not edit directly
|
|
4234
|
-
* Generated on
|
|
4233
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4235
4234
|
*/
|
|
4236
4235
|
/**
|
|
4237
4236
|
* TOKENS:
|
|
@@ -4279,7 +4278,7 @@
|
|
|
4279
4278
|
width: 0.6430868167rem;
|
|
4280
4279
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 11'%3e%3cpath fill='rgb(184, 196, 204)' d='M6.00007 10.8462L12 0L0 0L6.00007 10.8462Z'/%3e%3c/svg%3e");
|
|
4281
4280
|
}
|
|
4282
|
-
.ilo--link-list--links--item.indented:hover .ilo--link-list--label:before, .ilo--link-list--links--item.indented:focus .ilo--link-list--label:before {
|
|
4281
|
+
.ilo--link-list--links--item.indented .ilo--link-list--link:hover .ilo--link-list--label:before, .ilo--link-list--links--item.indented .ilo--link-list--link:focus .ilo--link-list--label:before, .ilo--link-list--links--item.indented:hover .ilo--link-list--label:before, .ilo--link-list--links--item.indented:focus .ilo--link-list--label:before {
|
|
4283
4282
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 11'%3e%3cpath fill='rgb(30, 45, 190)' d='M6.00007 10.8462L12 0L0 0L6.00007 10.8462Z'/%3e%3c/svg%3e");
|
|
4284
4283
|
}
|
|
4285
4284
|
.ilo--link-list--link {
|
|
@@ -4389,7 +4388,7 @@
|
|
|
4389
4388
|
|
|
4390
4389
|
/**
|
|
4391
4390
|
* Do not edit directly
|
|
4392
|
-
* Generated on
|
|
4391
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4393
4392
|
*/
|
|
4394
4393
|
/**
|
|
4395
4394
|
* TOKENS:
|
|
@@ -4484,7 +4483,7 @@
|
|
|
4484
4483
|
|
|
4485
4484
|
/**
|
|
4486
4485
|
* Do not edit directly
|
|
4487
|
-
* Generated on
|
|
4486
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4488
4487
|
*/
|
|
4489
4488
|
/**
|
|
4490
4489
|
* TOKENS:
|
|
@@ -4494,7 +4493,7 @@
|
|
|
4494
4493
|
*/
|
|
4495
4494
|
/**
|
|
4496
4495
|
* Do not edit directly
|
|
4497
|
-
* Generated on
|
|
4496
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4498
4497
|
*/
|
|
4499
4498
|
/**
|
|
4500
4499
|
* TOKENS:
|
|
@@ -4504,7 +4503,7 @@
|
|
|
4504
4503
|
*/
|
|
4505
4504
|
/**
|
|
4506
4505
|
* Do not edit directly
|
|
4507
|
-
* Generated on
|
|
4506
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4508
4507
|
*/
|
|
4509
4508
|
/**
|
|
4510
4509
|
* TOKENS:
|
|
@@ -4675,7 +4674,7 @@
|
|
|
4675
4674
|
|
|
4676
4675
|
/**
|
|
4677
4676
|
* Do not edit directly
|
|
4678
|
-
* Generated on
|
|
4677
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4679
4678
|
*/
|
|
4680
4679
|
/**
|
|
4681
4680
|
* TOKENS:
|
|
@@ -4722,7 +4721,7 @@
|
|
|
4722
4721
|
|
|
4723
4722
|
/**
|
|
4724
4723
|
* Do not edit directly
|
|
4725
|
-
* Generated on
|
|
4724
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4726
4725
|
*/
|
|
4727
4726
|
/**
|
|
4728
4727
|
* TOKENS:
|
|
@@ -4732,7 +4731,7 @@
|
|
|
4732
4731
|
*/
|
|
4733
4732
|
/**
|
|
4734
4733
|
* Do not edit directly
|
|
4735
|
-
* Generated on
|
|
4734
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4736
4735
|
*/
|
|
4737
4736
|
/**
|
|
4738
4737
|
* TOKENS:
|
|
@@ -4742,7 +4741,7 @@
|
|
|
4742
4741
|
*/
|
|
4743
4742
|
/**
|
|
4744
4743
|
* Do not edit directly
|
|
4745
|
-
* Generated on
|
|
4744
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4746
4745
|
*/
|
|
4747
4746
|
/**
|
|
4748
4747
|
* TOKENS:
|
|
@@ -4839,7 +4838,7 @@
|
|
|
4839
4838
|
|
|
4840
4839
|
/**
|
|
4841
4840
|
* Do not edit directly
|
|
4842
|
-
* Generated on
|
|
4841
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
4843
4842
|
*/
|
|
4844
4843
|
/**
|
|
4845
4844
|
* TOKENS:
|
|
@@ -4925,21 +4924,18 @@
|
|
|
4925
4924
|
}
|
|
4926
4925
|
.ilo--header--logo {
|
|
4927
4926
|
display: block;
|
|
4928
|
-
max-width: 150px;
|
|
4929
4927
|
width: 100%;
|
|
4930
4928
|
}
|
|
4931
|
-
@media screen and (min-width: 1024px) {
|
|
4932
|
-
.ilo--header--logo {
|
|
4933
|
-
max-width: 200px;
|
|
4934
|
-
}
|
|
4935
|
-
}
|
|
4936
4929
|
.ilo--header--logo-link {
|
|
4937
4930
|
display: block;
|
|
4938
4931
|
padding: 16px 0;
|
|
4932
|
+
max-width: 150px;
|
|
4933
|
+
width: 100%;
|
|
4939
4934
|
}
|
|
4940
4935
|
@media screen and (min-width: 1024px) {
|
|
4941
4936
|
.ilo--header--logo-link {
|
|
4942
4937
|
padding: 0 0 24px;
|
|
4938
|
+
max-width: 200px;
|
|
4943
4939
|
}
|
|
4944
4940
|
}
|
|
4945
4941
|
.ilo--header--logo-bar {
|
|
@@ -5729,7 +5725,7 @@
|
|
|
5729
5725
|
|
|
5730
5726
|
/**
|
|
5731
5727
|
* Do not edit directly
|
|
5732
|
-
* Generated on
|
|
5728
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
5733
5729
|
*/
|
|
5734
5730
|
/**
|
|
5735
5731
|
* TOKENS:
|
|
@@ -5739,7 +5735,7 @@
|
|
|
5739
5735
|
*/
|
|
5740
5736
|
/**
|
|
5741
5737
|
* Do not edit directly
|
|
5742
|
-
* Generated on
|
|
5738
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
5743
5739
|
*/
|
|
5744
5740
|
/**
|
|
5745
5741
|
* TOKENS:
|
|
@@ -5749,7 +5745,7 @@
|
|
|
5749
5745
|
*/
|
|
5750
5746
|
/**
|
|
5751
5747
|
* Do not edit directly
|
|
5752
|
-
* Generated on
|
|
5748
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
5753
5749
|
*/
|
|
5754
5750
|
/**
|
|
5755
5751
|
* TOKENS:
|
|
@@ -5941,7 +5937,7 @@
|
|
|
5941
5937
|
|
|
5942
5938
|
/**
|
|
5943
5939
|
* Do not edit directly
|
|
5944
|
-
* Generated on
|
|
5940
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
5945
5941
|
*/
|
|
5946
5942
|
/**
|
|
5947
5943
|
* TOKENS:
|
|
@@ -6082,7 +6078,7 @@
|
|
|
6082
6078
|
|
|
6083
6079
|
/**
|
|
6084
6080
|
* Do not edit directly
|
|
6085
|
-
* Generated on
|
|
6081
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6086
6082
|
*/
|
|
6087
6083
|
/**
|
|
6088
6084
|
* TOKENS:
|
|
@@ -6092,7 +6088,7 @@
|
|
|
6092
6088
|
*/
|
|
6093
6089
|
/**
|
|
6094
6090
|
* Do not edit directly
|
|
6095
|
-
* Generated on
|
|
6091
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6096
6092
|
*/
|
|
6097
6093
|
/**
|
|
6098
6094
|
* TOKENS:
|
|
@@ -6117,7 +6113,7 @@
|
|
|
6117
6113
|
}
|
|
6118
6114
|
/**
|
|
6119
6115
|
* Do not edit directly
|
|
6120
|
-
* Generated on
|
|
6116
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6121
6117
|
*/
|
|
6122
6118
|
/**
|
|
6123
6119
|
* TOKENS:
|
|
@@ -6126,165 +6122,148 @@
|
|
|
6126
6122
|
* MAPS:
|
|
6127
6123
|
*/
|
|
6128
6124
|
.ilo--profile {
|
|
6129
|
-
|
|
6130
|
-
|
|
6125
|
+
display: grid;
|
|
6126
|
+
grid-template-columns: min-content 1fr;
|
|
6127
|
+
grid-template-rows: minmax(64px, auto) auto;
|
|
6128
|
+
max-width: 18.3815648446rem;
|
|
6129
|
+
width: 100%;
|
|
6131
6130
|
}
|
|
6132
6131
|
.ilo--profile--avatar {
|
|
6132
|
+
grid-row: 1;
|
|
6133
6133
|
border-radius: 50%;
|
|
6134
|
-
float: left;
|
|
6135
|
-
width: 3.4297963558rem;
|
|
6136
|
-
}
|
|
6137
|
-
.ilo--profile--contents--light .id {
|
|
6138
|
-
margin-left: 4.0192926045rem;
|
|
6139
|
-
padding-top: 5px;
|
|
6140
|
-
}
|
|
6141
|
-
.ilo--profile--contents--light .id:first-of-type {
|
|
6142
|
-
padding-bottom: 1px;
|
|
6143
6134
|
}
|
|
6144
|
-
.ilo--profile
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
-
|
|
6148
|
-
|
|
6149
|
-
|
|
6150
|
-
|
|
6151
|
-
|
|
6152
|
-
.ilo--profile--contents--light .id:first-of-type:last-of-type {
|
|
6153
|
-
padding-top: 14px;
|
|
6154
|
-
}
|
|
6155
|
-
.ilo--profile--contents--dark .id {
|
|
6156
|
-
margin-left: 4.0192926045rem;
|
|
6157
|
-
padding-top: 5px;
|
|
6158
|
-
}
|
|
6159
|
-
.ilo--profile--contents--dark .id:first-of-type {
|
|
6160
|
-
padding-bottom: 1px;
|
|
6135
|
+
.ilo--profile figcaption {
|
|
6136
|
+
box-sizing: border-box;
|
|
6137
|
+
grid-row: 1;
|
|
6138
|
+
grid-column-end: -1;
|
|
6139
|
+
display: flex;
|
|
6140
|
+
flex-flow: column;
|
|
6141
|
+
justify-content: center;
|
|
6142
|
+
align-items: start;
|
|
6161
6143
|
}
|
|
6162
|
-
.ilo--profile--
|
|
6163
|
-
|
|
6144
|
+
.ilo--profile--figcaption--content {
|
|
6145
|
+
box-sizing: border-box;
|
|
6146
|
+
width: 100%;
|
|
6147
|
+
display: flex;
|
|
6148
|
+
flex-flow: column;
|
|
6149
|
+
justify-content: center;
|
|
6150
|
+
align-items: start;
|
|
6151
|
+
position: relative;
|
|
6164
6152
|
}
|
|
6165
|
-
.ilo--profile--
|
|
6166
|
-
|
|
6153
|
+
.ilo--profile--figcaption--content:after {
|
|
6154
|
+
content: "";
|
|
6155
|
+
position: absolute;
|
|
6156
|
+
bottom: -12px;
|
|
6157
|
+
width: 100%;
|
|
6167
6158
|
border-bottom: 2px solid rgb(237, 240, 242);
|
|
6168
|
-
padding-bottom: 11px;
|
|
6169
|
-
}
|
|
6170
|
-
.ilo--profile--contents--dark .id:first-of-type:last-of-type {
|
|
6171
|
-
padding-top: 14px;
|
|
6172
6159
|
}
|
|
6173
6160
|
.ilo--profile--name {
|
|
6174
|
-
display: block;
|
|
6175
6161
|
font-family: Overpass, Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
6176
|
-
font-weight: 700;
|
|
6177
|
-
margin-left: 11px;
|
|
6178
|
-
font-size: 16px;
|
|
6179
|
-
letter-spacing: normal;
|
|
6180
|
-
line-height: 23.36px;
|
|
6181
6162
|
}
|
|
6182
6163
|
.ilo--profile--role {
|
|
6183
|
-
display: block;
|
|
6184
6164
|
font-family: Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
6185
|
-
margin-left: 11px;
|
|
6186
|
-
font-size: 14.93px;
|
|
6187
|
-
letter-spacing: normal;
|
|
6188
|
-
line-height: 20.3px;
|
|
6189
6165
|
}
|
|
6190
6166
|
.ilo--profile--description {
|
|
6191
|
-
clear: both;
|
|
6192
6167
|
font-family: Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
letter-spacing: normal;
|
|
6196
|
-
line-height: 20.3px;
|
|
6168
|
+
grid-row: 2;
|
|
6169
|
+
grid-column: 1/-1;
|
|
6197
6170
|
}
|
|
6198
6171
|
.ilo--profile--link {
|
|
6199
|
-
align-items: center;
|
|
6200
|
-
clear: both;
|
|
6201
|
-
color: rgb(35, 0, 80);
|
|
6202
|
-
display: inline-flex;
|
|
6203
6172
|
font-family: Overpass, Noto Sans, Noto Sans CJK JP, TakaoPGothic, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif;
|
|
6204
|
-
|
|
6205
|
-
|
|
6173
|
+
grid-column: 1/-1;
|
|
6174
|
+
}
|
|
6175
|
+
.ilo--profile--link a {
|
|
6206
6176
|
text-decoration: none;
|
|
6207
|
-
|
|
6208
|
-
|
|
6209
|
-
line-height: 23.36px;
|
|
6177
|
+
color: rgb(35, 0, 80);
|
|
6178
|
+
display: inline-block;
|
|
6210
6179
|
}
|
|
6211
|
-
.ilo--profile--link
|
|
6180
|
+
.ilo--profile--link--label {
|
|
6181
|
+
display: flex;
|
|
6182
|
+
flex-flow: row nowrap;
|
|
6212
6183
|
align-items: center;
|
|
6213
|
-
background-position: calc(100% - 10px) center;
|
|
6214
|
-
background-repeat: no-repeat;
|
|
6215
|
-
background-size: 24px 24px;
|
|
6216
|
-
display: inline-flex;
|
|
6217
|
-
height: 24px;
|
|
6218
|
-
padding-right: 32px;
|
|
6219
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='M8.63792 19.9964L7.6499 19.0082L14.6571 11.9999L7.6499 4.99159L8.63792 4.00342L16.1426 11.5023C16.2083 11.5675 16.2604 11.645 16.296 11.7304C16.3316 11.8158 16.3499 11.9074 16.3499 11.9999C16.3499 12.0924 16.3316 12.184 16.296 12.2694C16.2604 12.3548 16.2083 12.4324 16.1426 12.4975L8.63792 19.9964Z'/%3e%3c/svg%3e");
|
|
6220
6184
|
}
|
|
6221
|
-
.ilo--profile--link:
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
|
|
6228
|
-
color: rgb(35, 0, 80);
|
|
6229
|
-
outline: none;
|
|
6230
|
-
}
|
|
6231
|
-
.ilo--profile--link:active span {
|
|
6185
|
+
.ilo--profile--link--label:after {
|
|
6186
|
+
position: relative;
|
|
6187
|
+
bottom: 0.0535905681rem;
|
|
6188
|
+
height: 1.2861736334rem;
|
|
6189
|
+
width: 1.2861736334rem;
|
|
6190
|
+
margin-inline-start: 0.4287245445rem;
|
|
6191
|
+
content: "";
|
|
6232
6192
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='M8.63792 19.9964L7.6499 19.0082L14.6571 11.9999L7.6499 4.99159L8.63792 4.00342L16.1426 11.5023C16.2083 11.5675 16.2604 11.645 16.296 11.7304C16.3316 11.8158 16.3499 11.9074 16.3499 11.9999C16.3499 12.0924 16.3316 12.184 16.296 12.2694C16.2604 12.3548 16.2083 12.4324 16.1426 12.4975L8.63792 19.9964Z'/%3e%3c/svg%3e");
|
|
6233
|
-
background-color: rgb(255, 205, 45);
|
|
6234
6193
|
}
|
|
6235
|
-
.ilo--profile--link
|
|
6236
|
-
background-
|
|
6194
|
+
[dir=rtl] .ilo--profile--link--label:after {
|
|
6195
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
6196
|
+
}
|
|
6197
|
+
.ilo--profile--link a:hover .ilo--profile--link--label,
|
|
6198
|
+
.ilo--profile--link a:focus .ilo--profile--link--label {
|
|
6237
6199
|
color: rgb(30, 45, 190);
|
|
6238
6200
|
outline: none;
|
|
6239
|
-
transition-property: color, background-color;
|
|
6240
|
-
transition-duration: 150ms;
|
|
6241
|
-
transition-timing-function: ease-out;
|
|
6242
6201
|
}
|
|
6243
|
-
.ilo--profile--link:hover
|
|
6202
|
+
.ilo--profile--link a:hover .ilo--profile--link--label:after,
|
|
6203
|
+
.ilo--profile--link a:focus .ilo--profile--link--label:after {
|
|
6244
6204
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(30, 45, 190)' d='M8.63792 19.9964L7.6499 19.0082L14.6571 11.9999L7.6499 4.99159L8.63792 4.00342L16.1426 11.5023C16.2083 11.5675 16.2604 11.645 16.296 11.7304C16.3316 11.8158 16.3499 11.9074 16.3499 11.9999C16.3499 12.0924 16.3316 12.184 16.296 12.2694C16.2604 12.3548 16.2083 12.4324 16.1426 12.4975L8.63792 19.9964Z'/%3e%3c/svg%3e");
|
|
6245
6205
|
}
|
|
6246
|
-
|
|
6247
|
-
|
|
6206
|
+
[dir=rtl] .ilo--profile--link a:hover .ilo--profile--link--label:after,
|
|
6207
|
+
[dir=rtl] .ilo--profile--link a:focus .ilo--profile--link--label:after {
|
|
6208
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(30, 45, 190)' d='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
6248
6209
|
}
|
|
6249
|
-
.ilo--
|
|
6250
|
-
|
|
6210
|
+
.ilo--profile__theme__dark {
|
|
6211
|
+
color: rgb(237, 240, 242);
|
|
6251
6212
|
}
|
|
6252
|
-
.ilo--
|
|
6253
|
-
|
|
6213
|
+
.ilo--profile__theme__dark .ilo--profile--link--label:after {
|
|
6214
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='M8.63792 19.9964L7.6499 19.0082L14.6571 11.9999L7.6499 4.99159L8.63792 4.00342L16.1426 11.5023C16.2083 11.5675 16.2604 11.645 16.296 11.7304C16.3316 11.8158 16.3499 11.9074 16.3499 11.9999C16.3499 12.0924 16.3316 12.184 16.296 12.2694C16.2604 12.3548 16.2083 12.4324 16.1426 12.4975L8.63792 19.9964Z'/%3e%3c/svg%3e");
|
|
6254
6215
|
}
|
|
6255
|
-
.
|
|
6256
|
-
|
|
6216
|
+
[dir=rtl] .ilo--profile__theme__dark .ilo--profile--link--label:after {
|
|
6217
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
6257
6218
|
}
|
|
6258
|
-
.
|
|
6259
|
-
|
|
6219
|
+
.ilo--profile__theme__dark .ilo--profile--link a {
|
|
6220
|
+
color: rgb(237, 240, 242);
|
|
6260
6221
|
}
|
|
6261
|
-
.
|
|
6262
|
-
|
|
6263
|
-
|
|
6222
|
+
.ilo--profile__theme__dark .ilo--profile--link a:hover .ilo--profile--link--label,
|
|
6223
|
+
.ilo--profile__theme__dark .ilo--profile--link a:focus .ilo--profile--link--label {
|
|
6224
|
+
color: rgb(5, 210, 210);
|
|
6225
|
+
outline: none;
|
|
6264
6226
|
}
|
|
6265
|
-
.
|
|
6266
|
-
|
|
6267
|
-
|
|
6227
|
+
.ilo--profile__theme__dark .ilo--profile--link a:hover .ilo--profile--link--label:after,
|
|
6228
|
+
.ilo--profile__theme__dark .ilo--profile--link a:focus .ilo--profile--link--label:after {
|
|
6229
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(5, 210, 210)' d='M8.63792 19.9964L7.6499 19.0082L14.6571 11.9999L7.6499 4.99159L8.63792 4.00342L16.1426 11.5023C16.2083 11.5675 16.2604 11.645 16.296 11.7304C16.3316 11.8158 16.3499 11.9074 16.3499 11.9999C16.3499 12.0924 16.3316 12.184 16.296 12.2694C16.2604 12.3548 16.2083 12.4324 16.1426 12.4975L8.63792 19.9964Z'/%3e%3c/svg%3e");
|
|
6268
6230
|
}
|
|
6269
|
-
.
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
padding-right: 0;
|
|
6273
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
6231
|
+
[dir=rtl] .ilo--profile__theme__dark .ilo--profile--link a:hover .ilo--profile--link--label:after,
|
|
6232
|
+
[dir=rtl] .ilo--profile__theme__dark .ilo--profile--link a:focus .ilo--profile--link--label:after {
|
|
6233
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(5, 210, 210)' d='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
6274
6234
|
}
|
|
6275
|
-
.
|
|
6276
|
-
|
|
6235
|
+
.ilo--profile__size__large .ilo--profile--avatar {
|
|
6236
|
+
width: 3.4297963558rem;
|
|
6237
|
+
height: 3.4297963558rem;
|
|
6238
|
+
margin-inline-end: 0.8038585209rem;
|
|
6277
6239
|
}
|
|
6278
|
-
.
|
|
6279
|
-
|
|
6240
|
+
.ilo--profile__size__large .ilo--profile--name {
|
|
6241
|
+
font-weight: 700;
|
|
6242
|
+
font-size: 16px;
|
|
6243
|
+
letter-spacing: normal;
|
|
6244
|
+
line-height: 23.36px;
|
|
6280
6245
|
}
|
|
6281
|
-
.
|
|
6282
|
-
|
|
6246
|
+
.ilo--profile__size__large .ilo--profile--role {
|
|
6247
|
+
font-size: 14.93px;
|
|
6248
|
+
letter-spacing: normal;
|
|
6249
|
+
line-height: 20.3px;
|
|
6250
|
+
}
|
|
6251
|
+
.ilo--profile__size__large .ilo--profile--description {
|
|
6252
|
+
font-size: 14.93px;
|
|
6253
|
+
letter-spacing: normal;
|
|
6254
|
+
line-height: 20.3px;
|
|
6255
|
+
padding-block-start: 1.1254019293rem;
|
|
6256
|
+
}
|
|
6257
|
+
.ilo--profile__size__large .ilo--profile--link {
|
|
6258
|
+
font-size: 16px;
|
|
6259
|
+
letter-spacing: normal;
|
|
6260
|
+
line-height: 23.36px;
|
|
6261
|
+
padding-block-start: 1.1254019293rem;
|
|
6283
6262
|
}
|
|
6284
6263
|
|
|
6285
6264
|
/**
|
|
6286
6265
|
* Do not edit directly
|
|
6287
|
-
* Generated on
|
|
6266
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6288
6267
|
*/
|
|
6289
6268
|
/**
|
|
6290
6269
|
* TOKENS:
|
|
@@ -6353,7 +6332,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
6353
6332
|
|
|
6354
6333
|
/**
|
|
6355
6334
|
* Do not edit directly
|
|
6356
|
-
* Generated on
|
|
6335
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6357
6336
|
*/
|
|
6358
6337
|
/**
|
|
6359
6338
|
* TOKENS:
|
|
@@ -6363,7 +6342,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
6363
6342
|
*/
|
|
6364
6343
|
/**
|
|
6365
6344
|
* Do not edit directly
|
|
6366
|
-
* Generated on
|
|
6345
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6367
6346
|
*/
|
|
6368
6347
|
/**
|
|
6369
6348
|
* TOKENS:
|
|
@@ -6388,7 +6367,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
6388
6367
|
}
|
|
6389
6368
|
/**
|
|
6390
6369
|
* Do not edit directly
|
|
6391
|
-
* Generated on
|
|
6370
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6392
6371
|
*/
|
|
6393
6372
|
/**
|
|
6394
6373
|
* TOKENS:
|
|
@@ -6449,7 +6428,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
6449
6428
|
|
|
6450
6429
|
/**
|
|
6451
6430
|
* Do not edit directly
|
|
6452
|
-
* Generated on
|
|
6431
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6453
6432
|
*/
|
|
6454
6433
|
/**
|
|
6455
6434
|
* TOKENS:
|
|
@@ -6864,7 +6843,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
6864
6843
|
|
|
6865
6844
|
/**
|
|
6866
6845
|
* Do not edit directly
|
|
6867
|
-
* Generated on
|
|
6846
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6868
6847
|
*/
|
|
6869
6848
|
/**
|
|
6870
6849
|
* TOKENS:
|
|
@@ -6918,7 +6897,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
6918
6897
|
|
|
6919
6898
|
/**
|
|
6920
6899
|
* Do not edit directly
|
|
6921
|
-
* Generated on
|
|
6900
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
6922
6901
|
*/
|
|
6923
6902
|
/**
|
|
6924
6903
|
* TOKENS:
|
|
@@ -7016,6 +6995,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7016
6995
|
background-color: rgb(235, 245, 253);
|
|
7017
6996
|
color: rgb(30, 45, 190);
|
|
7018
6997
|
outline: none;
|
|
6998
|
+
border-top: 0.1607717042rem solid rgb(30, 45, 190);
|
|
7019
6999
|
transition-property: color, background-color, border-color;
|
|
7020
7000
|
transition-duration: 150ms;
|
|
7021
7001
|
transition-timing-function: ease-out;
|
|
@@ -7054,7 +7034,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7054
7034
|
.ilo--tabs.tabs--js .ilo--tabs--selection {
|
|
7055
7035
|
display: flex;
|
|
7056
7036
|
max-width: 100%;
|
|
7057
|
-
overflow-x:
|
|
7037
|
+
overflow-x: hidden;
|
|
7058
7038
|
overflow-y: hidden;
|
|
7059
7039
|
}
|
|
7060
7040
|
.ilo--tabs.tabs--js .ilo--tabs--selection--button {
|
|
@@ -7076,7 +7056,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7076
7056
|
|
|
7077
7057
|
/**
|
|
7078
7058
|
* Do not edit directly
|
|
7079
|
-
* Generated on
|
|
7059
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
7080
7060
|
*/
|
|
7081
7061
|
/**
|
|
7082
7062
|
* TOKENS:
|
|
@@ -7427,7 +7407,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7427
7407
|
|
|
7428
7408
|
/**
|
|
7429
7409
|
* Do not edit directly
|
|
7430
|
-
* Generated on
|
|
7410
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
7431
7411
|
*/
|
|
7432
7412
|
/**
|
|
7433
7413
|
* TOKENS:
|
|
@@ -7613,7 +7593,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7613
7593
|
|
|
7614
7594
|
/**
|
|
7615
7595
|
* Do not edit directly
|
|
7616
|
-
* Generated on
|
|
7596
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
7617
7597
|
*/
|
|
7618
7598
|
/**
|
|
7619
7599
|
* TOKENS:
|
|
@@ -7671,7 +7651,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7671
7651
|
|
|
7672
7652
|
/**
|
|
7673
7653
|
* Do not edit directly
|
|
7674
|
-
* Generated on
|
|
7654
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
7675
7655
|
*/
|
|
7676
7656
|
/**
|
|
7677
7657
|
* TOKENS:
|
|
@@ -7705,6 +7685,10 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7705
7685
|
transition-property: color, background-color, border-color;
|
|
7706
7686
|
transition-duration: 150ms;
|
|
7707
7687
|
transition-timing-function: ease-out;
|
|
7688
|
+
max-width: 190px;
|
|
7689
|
+
white-space: nowrap;
|
|
7690
|
+
overflow: hidden;
|
|
7691
|
+
text-overflow: ellipsis;
|
|
7708
7692
|
}
|
|
7709
7693
|
.ilo--tag--active {
|
|
7710
7694
|
background: rgb(237, 240, 242);
|
|
@@ -7845,7 +7829,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7845
7829
|
|
|
7846
7830
|
/**
|
|
7847
7831
|
* Do not edit directly
|
|
7848
|
-
* Generated on
|
|
7832
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
7849
7833
|
*/
|
|
7850
7834
|
/**
|
|
7851
7835
|
* TOKENS:
|
|
@@ -7905,7 +7889,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7905
7889
|
|
|
7906
7890
|
/**
|
|
7907
7891
|
* Do not edit directly
|
|
7908
|
-
* Generated on
|
|
7892
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
7909
7893
|
*/
|
|
7910
7894
|
/**
|
|
7911
7895
|
* TOKENS:
|
|
@@ -7915,7 +7899,7 @@ input:invalid + .ilo--radio--control:after, .ilo--radio__error .ilo--radio--cont
|
|
|
7915
7899
|
*/
|
|
7916
7900
|
/**
|
|
7917
7901
|
* Do not edit directly
|
|
7918
|
-
* Generated on
|
|
7902
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
7919
7903
|
*/
|
|
7920
7904
|
/**
|
|
7921
7905
|
* TOKENS:
|
|
@@ -8017,7 +8001,7 @@ input:checked + .ilo--input--toggle--slider:before {
|
|
|
8017
8001
|
|
|
8018
8002
|
/**
|
|
8019
8003
|
* Do not edit directly
|
|
8020
|
-
* Generated on
|
|
8004
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
8021
8005
|
*/
|
|
8022
8006
|
/**
|
|
8023
8007
|
* TOKENS:
|
|
@@ -8192,7 +8176,7 @@ input:checked + .ilo--input--toggle--slider:before {
|
|
|
8192
8176
|
|
|
8193
8177
|
/**
|
|
8194
8178
|
* Do not edit directly
|
|
8195
|
-
* Generated on
|
|
8179
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
8196
8180
|
*/
|
|
8197
8181
|
/**
|
|
8198
8182
|
* TOKENS:
|
|
@@ -9102,7 +9086,7 @@ input:checked + .ilo--input--toggle--slider:before {
|
|
|
9102
9086
|
|
|
9103
9087
|
/**
|
|
9104
9088
|
* Do not edit directly
|
|
9105
|
-
* Generated on
|
|
9089
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
9106
9090
|
*/
|
|
9107
9091
|
/**
|
|
9108
9092
|
* TOKENS:
|
|
@@ -9112,7 +9096,7 @@ input:checked + .ilo--input--toggle--slider:before {
|
|
|
9112
9096
|
*/
|
|
9113
9097
|
/**
|
|
9114
9098
|
* Do not edit directly
|
|
9115
|
-
* Generated on
|
|
9099
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
9116
9100
|
*/
|
|
9117
9101
|
/**
|
|
9118
9102
|
* TOKENS:
|
|
@@ -9137,7 +9121,7 @@ input:checked + .ilo--input--toggle--slider:before {
|
|
|
9137
9121
|
}
|
|
9138
9122
|
/**
|
|
9139
9123
|
* Do not edit directly
|
|
9140
|
-
* Generated on
|
|
9124
|
+
* Generated on Fri, 10 Nov 2023 11:09:46 GMT
|
|
9141
9125
|
*/
|
|
9142
9126
|
/**
|
|
9143
9127
|
* TOKENS:
|