Skip to content

Commit 6699468

Browse files
committed
Merge remote-tracking branch 'upstream/main' into HEAD
2 parents e686c8b + 146bcc3 commit 6699468

File tree

7 files changed

+172
-0
lines changed

7 files changed

+172
-0
lines changed

source/_sass/app.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@
1515
*/
1616

1717
@use "sass:color";
18+
<<<<<<< HEAD
1819
@use "sass:meta";
1920
@use 'bourbon/bourbon';
21+
=======
22+
23+
@import 'bourbon/bourbon';
24+
>>>>>>> upstream/main
2025

2126
@use 'colors';
2227

@@ -65,15 +70,25 @@ body {
6570
code {
6671
background-color: colors.$white;
6772
border-radius: 2px;
73+
<<<<<<< HEAD
6874
color: color.adjust(variables.$base-font-color, $lightness: -20%, $space: hsl);
6975
font-family: font-family.$monospace;
7076
font-size: variables.$base-font-size;
77+
=======
78+
color: color.adjust($base-font-color, $lightness: -20%, $space: hsl);
79+
font-family: $monospace;
80+
font-size: $base-font-size;
81+
>>>>>>> upstream/main
7182
padding: 2px 4px;
7283
box-shadow: inset 0 0 2px #bbb;
7384
}
7485

7586
a code {
87+
<<<<<<< HEAD
7688
color: color.adjust(variables.$base-link-color, $lightness: -10%, $space: hsl);
89+
=======
90+
color: color.adjust($base-link-color, $lightness: -10%, $space: hsl);
91+
>>>>>>> upstream/main
7792
}
7893

7994
.container {

source/_sass/base/_lists.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,41 @@ ol {
2424

2525
&%default-ul {
2626
list-style-type: disc;
27+
<<<<<<< HEAD
2728
margin-bottom: variables.$base-line-height * 0.5;
2829
padding-left: variables.$base-line-height;
30+
=======
31+
margin-bottom: $base-line-height * 0.5;
32+
padding-left: $base-line-height;
33+
>>>>>>> upstream/main
2934
}
3035

3136
&%default-ol {
3237
list-style-type: decimal;
38+
<<<<<<< HEAD
3339
margin-bottom: variables.$base-line-height * 0.5;
3440
padding-left: variables.$base-line-height;
41+
=======
42+
margin-bottom: $base-line-height * 0.5;
43+
padding-left: $base-line-height;
44+
>>>>>>> upstream/main
3545
}
3646
}
3747

3848
dl {
49+
<<<<<<< HEAD
3950
margin-bottom: variables.$base-line-height * 0.5;
4051

4152
dt {
4253
font-weight: bold;
4354
margin-top: variables.$base-line-height * 0.5;
55+
=======
56+
margin-bottom: $base-line-height * 0.5;
57+
58+
dt {
59+
font-weight: bold;
60+
margin-top: $base-line-height * 0.5;
61+
>>>>>>> upstream/main
4462
}
4563

4664
dd {

source/_sass/base/_tables.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,20 @@ table {
2222

2323
th {
2424
font-weight: bold;
25+
<<<<<<< HEAD
2526
padding: (variables.$base-line-height * 0.5) 0;
27+
=======
28+
padding: ($base-line-height * 0.5) 0;
29+
>>>>>>> upstream/main
2630
text-align: left;
2731
}
2832

2933
td {
34+
<<<<<<< HEAD
3035
padding: (variables.$base-line-height * 0.5) 0;
36+
=======
37+
padding: ($base-line-height * 0.5) 0;
38+
>>>>>>> upstream/main
3139
}
3240

3341
tr,

source/_sass/base/_typography.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@
1515
*/
1616

1717
@use "sass:color";
18+
<<<<<<< HEAD
1819
@use "../bourbon/css3/transition";
1920
@use "variables";
2021

22+
=======
23+
>>>>>>> upstream/main
2124

2225
body {
2326
-webkit-font-smoothing: antialiased;
@@ -98,6 +101,7 @@ img {
98101
}
99102

100103
blockquote {
104+
<<<<<<< HEAD
101105
border-left: 2px solid variables.$base-border-color;
102106
color: color.adjust(variables.$base-font-color, $lightness: 15%, $space: hsl);
103107
margin: variables.$base-line-height 0;
@@ -106,6 +110,16 @@ blockquote {
106110

107111
cite {
108112
color: color.adjust(variables.$base-font-color, $lightness: 25%, $space: hsl);
113+
=======
114+
border-left: 2px solid $base-border-color;
115+
color: color.adjust($base-font-color, $lightness: 15%, $space: hsl);
116+
margin: $base-line-height 0;
117+
padding-left: $base-line-height * 0.5;
118+
}
119+
120+
cite {
121+
color: color.adjust($base-font-color, $lightness: 25%, $space: hsl);
122+
>>>>>>> upstream/main
109123
font-style: italic;
110124

111125
&:before {

source/_sass/base/_variables.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@
1414
* limitations under the License.
1515
*/
1616

17+
<<<<<<< HEAD
1718
@use "../bourbon/addons/font-family";
1819
@use "../bourbon/functions/px-to-em";
1920
@use "../colors";
2021

22+
=======
23+
>>>>>>> upstream/main
2124
@use "sass:color";
2225

2326
// Typography
@@ -61,7 +64,11 @@ $form-border-color: $base-border-color;
6164
$form-border-color-hover: color.adjust($base-border-color, $lightness: -10%, $space: hsl);
6265
$form-border-color-focus: $base-accent-color;
6366
$form-border-radius: $base-border-radius;
67+
<<<<<<< HEAD
6468
$form-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
69+
=======
70+
$form-box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
71+
>>>>>>> upstream/main
6572
$form-box-shadow-focus: $form-box-shadow, 0 0 5px rgba(color.adjust($form-border-color-focus, $lightness: -5%, $space: hsl), 0.7);
6673
$form-font-size: $base-font-size;
6774
$form-font-family: $base-font-family;

source/_sass/base/mixins/_flash.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,23 @@
1515
*/
1616

1717
@use "sass:color";
18+
<<<<<<< HEAD
1819
@use "../variables";
1920

21+
=======
22+
>>>>>>> upstream/main
2023

2124
@mixin flash($color) {
2225
background: $color;
2326
color: color.adjust($color, $lightness: -60%, $space: hsl);
2427
font-weight: bold;
28+
<<<<<<< HEAD
2529
margin-bottom: variables.$base-line-height * 0.5;
2630
padding: variables.$base-line-height * 0.5;
31+
=======
32+
margin-bottom: $base-line-height * 0.5;
33+
padding: $base-line-height * 0.5;
34+
>>>>>>> upstream/main
2735

2836
a {
2937
color: color.adjust($color, $lightness: -70%, $space: hsl);

0 commit comments

Comments
 (0)