Skip to content

Commit a97ee11

Browse files
authored
Green is good (#168)
* Green is good * Green is good
1 parent b73155d commit a97ee11

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

feature-queries/and.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
}
1515
@supports (display: grid) and (shape-outside: circle()) {
1616
.box {
17-
border: 4px dashed red;
18-
color: red;
17+
border: 4px dashed darkgreen;
18+
color: darkgreen;
1919
}
2020
}
2121
</style>
@@ -25,7 +25,7 @@
2525
<section class="preview">
2626
<div class="box">
2727
If your browser supports display: grid and shape-outside: circle(), the
28-
content will be red with a dashed border.
28+
content will be darkgreen with a dashed border.
2929
</div>
3030
</section>
3131

@@ -36,15 +36,15 @@
3636
}
3737
@supports (display: grid) and (shape-outside: circle()) {
3838
.box {
39-
border: 4px dashed red;
40-
color: red;
39+
border: 4px dashed darkgreen;
40+
color: darkgreen;
4141
}
4242
}</textarea
4343
>
4444

4545
<textarea class="playable playable-html" style="height: 120px">
4646
<div class="box">
47-
If your browser supports display: grid and shape-outside: circle(), the content will be red with a dashed border.
47+
If your browser supports display: grid and shape-outside: circle(), the content will be darkgreen with a dashed border.
4848
</div></textarea
4949
>
5050

feature-queries/not.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
}
1515
@supports not (row-gap: 10px) {
1616
.box {
17-
border: 4px dashed red;
18-
color: red;
17+
border: 4px dashed darkgreen;
18+
color: darkgreen;
1919
}
2020
}
2121
</style>
@@ -25,7 +25,7 @@
2525
<section class="preview">
2626
<div class="box">
2727
If your browser does not support row-gap, the content will be
28-
red with a dashed border.
28+
darkgreen with a dashed border.
2929
</div>
3030
</section>
3131

@@ -36,15 +36,15 @@
3636
}
3737
@supports not (row-gap: 10px) {
3838
.box {
39-
border: 4px dashed red;
40-
color: red;
39+
border: 4px dashed darkgreen;
40+
color: darkgreen;
4141
}
4242
}</textarea
4343
>
4444

4545
<textarea class="playable playable-html" style="height: 120px">
4646
<div class="box">
47-
If your browser does not support row-gap, the content will be red with a dashed border.
47+
If your browser does not support row-gap, the content will be darkgreen with a dashed border.
4848
</div></textarea
4949
>
5050

0 commit comments

Comments
 (0)