ros.grant.common 2.0.1327 → 2.0.1330
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/Shared/Fonts/PTSansPro-Regular.ttf +0 -0
- package/Shared/Fonts/PTSansPro-Regular.woff +0 -0
- package/Shared/Fonts/{PTSansProCaptionBold.ttf → PTSansProCaption-Bold.ttf} +0 -0
- package/Shared/Fonts/PTSansProCaption-Bold.woff +0 -0
- package/Shared/Fonts/{PTSansProCaptionBold.woff2 → PTSansProCaption-Bold.woff2} +0 -0
- package/Shared/Fonts/{PTSansPro-Caption.ttf → PTSansProCaption.ttf} +0 -0
- package/Shared/Fonts/PTSansProCaption.woff +0 -0
- package/Shared/Fonts/PTSansProCaption.woff2 +0 -0
- package/Shared/Styles/Base/Fonts.less +23 -15
- package/Shared/Styles/Layout/Footer/FooterMinfin.less +13 -9
- package/Shared/Styles/Layout/Header/HeaderMinfin.less +23 -10
- package/package.json +2 -2
- package/Shared/Fonts/PTSansPro-Caption.woff2 +0 -0
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1524,30 +1524,38 @@
|
|
|
1524
1524
|
/** PT Sans Pro**/
|
|
1525
1525
|
@font-face {
|
|
1526
1526
|
font-family: 'PT Sans Pro - Regular';
|
|
1527
|
-
src: local('
|
|
1527
|
+
src: local('PT Sans Pro - Regular'),
|
|
1528
|
+
local('PTSansPro-Regular'),
|
|
1529
|
+
url('@{commonFontsRoot}/PTSansPro-Regular.woff') format('woff'),
|
|
1530
|
+
url('@{commonFontsRoot}/PTSansPro-Regular.woff2') format('woff2'),
|
|
1531
|
+
url('@{commonFontsRoot}PTSansPro-Regular.ttf') format('truetype');
|
|
1528
1532
|
font-weight: 300;
|
|
1529
1533
|
font-style: normal;
|
|
1530
1534
|
font-display: swap;
|
|
1531
1535
|
}
|
|
1532
1536
|
|
|
1533
1537
|
@font-face {
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1538
|
+
font-family: 'PT Sans Pro Caption';
|
|
1539
|
+
src: local('PT Sans Pro Caption'),
|
|
1540
|
+
local('PTSansPro-Caption'),
|
|
1541
|
+
url('@{commonFontsRoot}/PTSansProCaption.woff') format('woff'),
|
|
1542
|
+
url('@{commonFontsRoot}/PTSansProCaption.woff2') format('woff2'),
|
|
1543
|
+
url('@{commonFontsRoot}PTSansProCaption.ttf') format('truetype');
|
|
1544
|
+
font-weight: 400;
|
|
1545
|
+
font-style: normal;
|
|
1546
|
+
font-display: swap;
|
|
1541
1547
|
}
|
|
1542
1548
|
|
|
1543
1549
|
@font-face {
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1550
|
+
font-family: 'PT Sans Pro Caption Bold';
|
|
1551
|
+
src: local('PT Sans Pro Caption Bold'),
|
|
1552
|
+
local('PTSansPro-Caption Bold'),
|
|
1553
|
+
url('@{commonFontsRoot}/PTSansProCaption-Bold.woff') format('woff'),
|
|
1554
|
+
url('@{commonFontsRoot}/PTSansProCaption-Bold.woff2') format('woff2'),
|
|
1555
|
+
url('@{commonFontsRoot}PTSansProCaption-Bold.ttf') format('truetype');
|
|
1556
|
+
font-weight: 700;
|
|
1557
|
+
font-style: normal;
|
|
1558
|
+
font-display: swap;
|
|
1551
1559
|
}
|
|
1552
1560
|
/** PT Sans Pro Caption END**/
|
|
1553
1561
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.footer-minfin {
|
|
2
2
|
padding: 24px 0;
|
|
3
|
-
background:
|
|
3
|
+
background: var(--Main2);
|
|
4
4
|
color: #fff;
|
|
5
5
|
|
|
6
6
|
& * {
|
|
@@ -19,14 +19,16 @@
|
|
|
19
19
|
|
|
20
20
|
// footer-description
|
|
21
21
|
&-description {
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
width: 100%;
|
|
23
|
+
max-width: 856px;
|
|
24
|
+
margin-right: 32px;
|
|
24
25
|
display: flex;
|
|
25
26
|
flex-direction: column;
|
|
26
27
|
align-items: flex-start;
|
|
27
28
|
|
|
28
29
|
@media (max-width: 1200px) {
|
|
29
|
-
margin-bottom:
|
|
30
|
+
margin-bottom: 16px;
|
|
31
|
+
margin-right: 0;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
// footer-description-logo
|
|
@@ -44,8 +46,8 @@
|
|
|
44
46
|
&-text {
|
|
45
47
|
font-size: 14px;
|
|
46
48
|
line-height: 140%;
|
|
47
|
-
margin-bottom:
|
|
48
|
-
|
|
49
|
+
margin-bottom: 32px;
|
|
50
|
+
width: 100%;
|
|
49
51
|
color: #fff;
|
|
50
52
|
|
|
51
53
|
@media (max-width: 1200px) {
|
|
@@ -83,14 +85,15 @@
|
|
|
83
85
|
|
|
84
86
|
// footer-description-copyright svg
|
|
85
87
|
svg {
|
|
86
|
-
margin-right:
|
|
88
|
+
margin-right: 8px;
|
|
87
89
|
}
|
|
88
90
|
|
|
89
91
|
&_mobile {
|
|
90
92
|
display: none;
|
|
91
93
|
|
|
92
94
|
@media (max-width: 1200px) {
|
|
93
|
-
display:
|
|
95
|
+
display: flex;
|
|
96
|
+
align-items: flex-end;
|
|
94
97
|
order: 2;
|
|
95
98
|
}
|
|
96
99
|
}
|
|
@@ -106,7 +109,8 @@
|
|
|
106
109
|
max-width: 340px;
|
|
107
110
|
|
|
108
111
|
@media (max-width: 1200px) {
|
|
109
|
-
max-width:
|
|
112
|
+
max-width: 856px;
|
|
113
|
+
width: 100%;
|
|
110
114
|
}
|
|
111
115
|
|
|
112
116
|
// footer-info-socials
|
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
.page-wrapper {
|
|
2
2
|
.header-minfin {
|
|
3
|
-
padding: 16px
|
|
3
|
+
padding-top: 16px;
|
|
4
4
|
color: #fff;
|
|
5
5
|
background: transparent;
|
|
6
6
|
z-index: 6;
|
|
7
7
|
position: relative;
|
|
8
|
+
background: var(--Main2);
|
|
9
|
+
|
|
10
|
+
@media (max-width: 768px) {
|
|
11
|
+
padding-top: 8px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.transparent-header {
|
|
15
|
+
background: transparent;
|
|
16
|
+
}
|
|
8
17
|
|
|
9
18
|
&.header_wide {
|
|
10
19
|
padding:16px;
|
|
@@ -60,9 +69,9 @@
|
|
|
60
69
|
.header-minfin-nav {
|
|
61
70
|
position: absolute;
|
|
62
71
|
left: 0;
|
|
63
|
-
top:
|
|
72
|
+
top: 0;
|
|
64
73
|
width: 100vw;
|
|
65
|
-
height:
|
|
74
|
+
height: 100vh;
|
|
66
75
|
z-index: -1;
|
|
67
76
|
transform: translateY(-100%);
|
|
68
77
|
transition: .2s;
|
|
@@ -124,6 +133,7 @@
|
|
|
124
133
|
align-items: center;
|
|
125
134
|
justify-content: center;
|
|
126
135
|
cursor: pointer;
|
|
136
|
+
z-index: 11;
|
|
127
137
|
|
|
128
138
|
// header-minfin-burger_active
|
|
129
139
|
&_active {
|
|
@@ -179,11 +189,12 @@
|
|
|
179
189
|
display: flex;
|
|
180
190
|
align-items: center;
|
|
181
191
|
justify-content: space-between;
|
|
182
|
-
margin-bottom:
|
|
192
|
+
margin-bottom: 24px;
|
|
183
193
|
position: relative;
|
|
184
194
|
|
|
185
195
|
@media (max-width: 768px) {
|
|
186
|
-
margin-bottom:
|
|
196
|
+
margin-bottom: 12px;
|
|
197
|
+
padding-bottom: 8px;
|
|
187
198
|
}
|
|
188
199
|
}
|
|
189
200
|
|
|
@@ -195,7 +206,6 @@
|
|
|
195
206
|
position: relative;
|
|
196
207
|
margin-right: 32px;
|
|
197
208
|
margin-left: auto;
|
|
198
|
-
align-self: flex-end;
|
|
199
209
|
|
|
200
210
|
.icon {
|
|
201
211
|
display: flex;
|
|
@@ -314,6 +324,7 @@
|
|
|
314
324
|
align-items: center;
|
|
315
325
|
justify-content: flex-end;
|
|
316
326
|
position: relative;
|
|
327
|
+
padding-bottom: 12px;
|
|
317
328
|
|
|
318
329
|
.header-minfin-nav__phone {
|
|
319
330
|
margin-left: unset;
|
|
@@ -488,12 +499,13 @@
|
|
|
488
499
|
&-nav {
|
|
489
500
|
display: flex;
|
|
490
501
|
align-items: center;
|
|
502
|
+
padding: 16px 0;
|
|
491
503
|
|
|
492
504
|
// header-minfin-nav__link
|
|
493
505
|
&__link {
|
|
494
506
|
font-size: 16px;
|
|
495
507
|
line-height: 20px;
|
|
496
|
-
margin-right:
|
|
508
|
+
margin-right: 24px;
|
|
497
509
|
color: #fff;
|
|
498
510
|
position: relative;
|
|
499
511
|
|
|
@@ -505,7 +517,7 @@
|
|
|
505
517
|
content: '';
|
|
506
518
|
position: absolute;
|
|
507
519
|
left: 0;
|
|
508
|
-
bottom: -
|
|
520
|
+
bottom: -16px;
|
|
509
521
|
width: 100%;
|
|
510
522
|
height: 2px;
|
|
511
523
|
background: #fff;
|
|
@@ -513,13 +525,14 @@
|
|
|
513
525
|
}
|
|
514
526
|
|
|
515
527
|
&_additional {
|
|
516
|
-
margin-left: 32px;
|
|
517
528
|
position: relative;
|
|
529
|
+
cursor: default;
|
|
530
|
+
height: 20px;
|
|
518
531
|
|
|
519
532
|
&:before {
|
|
520
533
|
content: '';
|
|
521
534
|
position: absolute;
|
|
522
|
-
left:
|
|
535
|
+
left: 0px;
|
|
523
536
|
top: 0;
|
|
524
537
|
width: 1px;
|
|
525
538
|
height: 100%;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.0.
|
|
2
|
+
"version": "2.0.1330",
|
|
3
3
|
"name": "ros.grant.common",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"pickmeup": "^3.2.1",
|
|
52
52
|
"rimraf": "^3.0.2",
|
|
53
53
|
"ros.grant.telerik": "1.0.22",
|
|
54
|
-
"ros.grant.webshared": "2.0.
|
|
54
|
+
"ros.grant.webshared": "2.0.424",
|
|
55
55
|
"rxjs": "^6.5.4",
|
|
56
56
|
"slick-carousel": "^1.8.1",
|
|
57
57
|
"sticky-sidebar": "^3.3.1",
|
|
Binary file
|