Skip to content

Commit 92d6b2a

Browse files
Merge branch 'main' into hotfix/#403-ghost-focus
2 parents 5acdf16 + b0091fb commit 92d6b2a

File tree

129 files changed

+341
-3312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+341
-3312
lines changed

assets-src/styles/advanced.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
@import "sass/00-settings/breakpoints";
99
@import "sass/00-settings/colors";
1010
//@import "sass/00-settings/debug";
11-
@import "sass/00-settings/paths";
1211
@import "sass/00-settings/typesetting";
1312

1413

assets-src/styles/core.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
@import "sass/00-settings/colors";
1010
//@import "sass/00-settings/debug";
1111
@import "sass/00-settings/fonts";
12-
@import "sass/00-settings/paths";
1312
@import "sass/00-settings/typesetting";
1413

1514

assets-src/styles/sass/00-settings/_colors.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ $link-color--hover: $deep-blue;
6969

7070
$success-color: #046704;
7171
$info-color: $w3c-blue;
72-
$warning-color: #C28605;
72+
$warning-color: #c28605;
7373
$error-color: #a82615;
7474

7575

assets-src/styles/sass/00-settings/_fonts.scss

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,37 @@
22
#Fonts
33
\*------------------------------------*/
44
@font-face {
5-
65
font-display: fallback;
76
font-family: 'Noto Sans';
87
font-style: normal;
98
font-weight: 400;
109
src: url('../fonts/notosans/notosans-regular.woff2') format('woff2'),
1110
url('../fonts/notosans/notosans-regular.woff') format('woff');
12-
1311
}
1412

1513
@font-face {
16-
1714
font-display: fallback;
1815
font-family: 'Noto Sans';
1916
font-style: italic;
2017
font-weight: 400;
2118
src: url('../fonts/notosans/notosans-italic.woff2') format('woff2'),
2219
url('../fonts/notosans/notosans-italic.woff') format('woff');
23-
2420
}
2521

2622
@font-face {
27-
2823
font-display: fallback;
2924
font-family: 'Noto Sans';
3025
font-style: normal;
3126
font-weight: 600;
3227
src: url('../fonts/notosans/notosans-bold.woff2') format('woff2'),
3328
url('../fonts/notosans/notosans-bold.woff') format('woff');
34-
3529
}
3630

3731
@font-face {
38-
3932
font-display: fallback;
4033
font-family: 'Noto Sans';
4134
font-style: italic;
4235
font-weight: 600;
4336
src: url('../fonts/notosans/notosans-bolditalic.woff2') format('woff2'),
4437
url('../fonts/notosans/notosans-bolditalic.woff') format('woff');
45-
4638
}

assets-src/styles/sass/00-settings/_paths.scss

Lines changed: 0 additions & 7 deletions
This file was deleted.

assets-src/styles/sass/20-mixins/_font-sizes.scss

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,70 +3,52 @@
33
\*------------------------------------*/
44

55
@mixin txt-venus {
6-
76
font-size: rem(33);
87
line-height: calc(43 / 33);
98

109
@include mq($bp-tab-small) {
11-
1210
font-size: rem(42);
1311
line-height: calc(58.8 / 42);
14-
1512
}
16-
1713
}
1814

1915

2016
@mixin txt-earth {
21-
2217
font-size: rem(27);
2318
line-height: calc(33.6 / 27);
2419

2520
@include mq($bp-tab-small) {
26-
2721
font-size: rem(34);
2822
line-height: calc(43 / 34);
29-
3023
}
31-
3224
}
3325

3426

3527
@mixin txt-mars {
36-
3728
font-size: rem(24);
3829
line-height: calc(33.6 / 24);
39-
4030
}
4131

4232

4333
@mixin txt-jupiter {
44-
4534
font-size: rem(20);
4635
line-height: calc(32 / 20);
47-
4836
}
4937

5038

5139
@mixin txt-saturn {
52-
5340
font-size: rem(18);
5441
line-height: calc(27 / 18);
55-
5642
}
5743

5844

5945
@mixin txt-pluto {
60-
6146
font-size: rem(15);
6247
line-height: calc(22.5 / 15);
63-
6448
}
6549

6650

6751
@mixin txt-eris {
68-
6952
font-size: rem(14);
7053
line-height: calc(20 / 14);
71-
7254
}

assets-src/styles/sass/20-mixins/_media-query.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
$query2: width,
99
$context: $browser-context
1010
) {
11-
1211
@media screen and (#{$query1}-#{$query2}: calc($point / $context) + "em") {
1312
@content;
1413
}
15-
1614
}

assets-src/styles/sass/20-mixins/_stack.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,11 @@ article {
2222
*/
2323

2424
@mixin stack($measure: 1em) {
25-
2625
display: flex;
2726
flex-direction: column;
2827
justify-content: flex-start;
2928

3029
& > * + * {
31-
3230
margin-top: $measure;
33-
3431
}
35-
3632
}

assets-src/styles/sass/30-base/_animation.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,15 @@
77
*/
88
@media screen and (prefers-reduced-motion: reduce),
99
(update: slow) {
10-
1110
*,
1211
::before,
1312
::after {
14-
1513
animation-delay: -1ms !important;
1614
animation-duration: 1ms !important;
1715
animation-iteration-count: 1 !important;
1816
background-attachment: initial !important;
1917
scroll-behavior: auto !important;
2018
transition-duration: 0.001ms !important;
2119
transition-delay: 0s !important;
22-
2320
}
24-
2521
}

assets-src/styles/sass/30-base/_bg-color.scss

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,17 @@
22
#Background colours
33
\*------------------------------------*/
44

5-
.bg {
6-
7-
&--alert {
8-
9-
background-color: $alert-color;
10-
color: $black;
11-
12-
}
13-
14-
&--success {
15-
16-
background-color: $success-color;
17-
color: $black;
18-
19-
}
20-
21-
&--warning {
22-
23-
background-color: $warning-color;
24-
color: $black;
25-
26-
}
27-
5+
.bg--info {
6+
background-color: $info-color;
7+
color: $white;
8+
}
9+
10+
.bg--success {
11+
background-color: $success-color;
12+
color: $white;
13+
}
14+
15+
.bg--warning {
16+
background-color: #c78a05;
17+
color: $black;
2818
}

0 commit comments

Comments
 (0)