-
Notifications
You must be signed in to change notification settings - Fork 513
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 2581-whitespace-example-without-whitespace-i…
…ncluded-in-code
- Loading branch information
Showing
50 changed files
with
806 additions
and
404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"bracketSameLine": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"printWidth": 120 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
live-examples/css-examples/@counter-style/additive-symbols.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@counter-style full-roman { | ||
system: additive; | ||
additive-symbols: | ||
50 l, | ||
40 xl, | ||
10 x, | ||
9 ix, | ||
5 v, | ||
4 iv, | ||
1 i; | ||
} | ||
|
||
ul { | ||
list-style: full-roman; | ||
} |
10 changes: 10 additions & 0 deletions
10
live-examples/css-examples/@counter-style/counter-list-negative.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<ol start="-3"> | ||
<li>One</li> | ||
<li>Two</li> | ||
<li>Three</li> | ||
<li>Four</li> | ||
<li>Five</li> | ||
<li>Six</li> | ||
<li>Seven</li> | ||
<li>Eight</li> | ||
</ol> |
10 changes: 10 additions & 0 deletions
10
live-examples/css-examples/@counter-style/counter-list.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<ul> | ||
<li>One</li> | ||
<li>Two</li> | ||
<li>Three</li> | ||
<li>Four</li> | ||
<li>Five</li> | ||
<li>Six</li> | ||
<li>Seven</li> | ||
<li>Eight</li> | ||
</ul> |
11 changes: 11 additions & 0 deletions
11
live-examples/css-examples/@counter-style/counter-style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@counter-style black-white-squares { | ||
system: symbolic; | ||
symbols: ◆ ◇; | ||
suffix: ' '; | ||
range: 0 6; | ||
fallback: square; | ||
} | ||
|
||
ul { | ||
list-style: black-white-squares; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@counter-style colors { | ||
system: fixed; | ||
symbols: 🟤 🟠 🟡 🟢 🟣; | ||
fallback: disc; | ||
} | ||
|
||
ul { | ||
list-style: colors; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
{ | ||
"pages": { | ||
"counterStyle": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/counter-style.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style.html", | ||
"title": "CSS Demo: @counter-style", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStyleSystem": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/system.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-system.html", | ||
"title": "CSS Demo: system", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStyleNegative": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/negative.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list-negative.html", | ||
"fileName": "counter-style-negative.html", | ||
"title": "CSS Demo: negative", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStylePrefix": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/prefix.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-prefix.html", | ||
"title": "CSS Demo: prefix", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStyleSuffix": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/suffix.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-suffix.html", | ||
"title": "CSS Demo: suffix", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStyleRange": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/range.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-range.html", | ||
"title": "CSS Demo: range", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStylePad": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/pad.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-pad.html", | ||
"title": "CSS Demo: pad", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStyleFallback": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/fallback.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-fallback.html", | ||
"title": "CSS Demo: fallback", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStyleSymbols": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/symbols.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-symbols.html", | ||
"title": "CSS Demo: symbols", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
}, | ||
"counterStyleAdditiveSymbols": { | ||
"cssExampleSrc": "./live-examples/css-examples/@counter-style/additive-symbols.css", | ||
"exampleCode": "./live-examples/css-examples/@counter-style/counter-list.html", | ||
"fileName": "counter-style-additive-symbols.html", | ||
"title": "CSS Demo: additive-symbols", | ||
"type": "tabbed", | ||
"defaultTab": "css", | ||
"height": "tabbed-shorter" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@counter-style negative-alphabet { | ||
system: numeric; | ||
symbols: 'A' 'B' 'C' 'D' 'E' 'F'; | ||
negative: '→' '←'; | ||
} | ||
|
||
ol { | ||
list-style: negative-alphabet; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@counter-style binary-with-pad { | ||
system: numeric; | ||
symbols: '0' '1'; | ||
pad: 4 '_'; | ||
} | ||
|
||
ul { | ||
list-style: binary-with-pad; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@counter-style heads { | ||
system: cyclic; | ||
symbols: 👧 🧒 🧑 👱; | ||
prefix: '🖐🏻'; | ||
} | ||
|
||
ul { | ||
list-style: heads; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@counter-style missing-shapes { | ||
system: cyclic; | ||
symbols: '♥︎' '♤'; | ||
range: | ||
1 2, | ||
5 6, | ||
9 10; | ||
} | ||
|
||
ul { | ||
list-style: missing-shapes; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@counter-style octal { | ||
system: numeric; | ||
symbols: '0' '1' '2' '3' '4' '5' '6' '7'; | ||
suffix: ': '; | ||
} | ||
|
||
ul { | ||
list-style: octal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@counter-style cool-symbols { | ||
system: symbolic; | ||
symbols: '*' '\21C9' ▲ 🐉 '🥲' ✹ '"' ❎ 💓; | ||
} | ||
|
||
ul { | ||
list-style: cool-symbols; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@counter-style smiles { | ||
system: fixed; | ||
symbols: 😀 😂 🙂 😍 😘 🤪; | ||
} | ||
|
||
ul { | ||
list-style: smiles; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
<p>NBA players with most championships:</p> | ||
<p>Track & field champions:</p> | ||
<ul> | ||
<li>Bill Russell</li> | ||
<li>Sam Jones</li> | ||
<li>Tom Heinsohn</li> | ||
<li>K. C. Jones</li> | ||
<li>Satch Sanders</li> | ||
<li>John Havlicek</li> | ||
<li>Jim Loscutoff</li> | ||
<li>Frank Ramsey</li> | ||
<li>Robert Horry</li> | ||
<li>Adhemar da Silva</li> | ||
<li>Wang Junxia</li> | ||
<li>Wilma Rudolph</li> | ||
<li>Babe Didrikson-Zaharias</li> | ||
<li>Betty Cuthbert</li> | ||
<li>Fanny Blankers-Koen</li> | ||
<li>Florence Griffith-Joyner</li> | ||
<li>Irena Szewinska</li> | ||
<li>Jackie Joyner-Kersee</li> | ||
<li>Shirley Strickland</li> | ||
<li>Carl Lewis</li> | ||
<li>Emil Zatopek</li> | ||
<li>Haile Gebrselassie</li> | ||
<li>Jesse Owens</li> | ||
<li>Jim Thorpe</li> | ||
<li>Paavo Nurmi</li> | ||
<li>Sergei Bubka</li> | ||
<li>Usain Bolt</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
<p>NBA players with most championships:</p> | ||
<p>Track & field champions:</p> | ||
<ul> | ||
<li>Bill Russell</li> | ||
<li>Sam Jones</li> | ||
<li>Tom Heinsohn</li> | ||
<li>K. C. Jones</li> | ||
<li>Satch Sanders</li> | ||
<li>John Havlicek</li> | ||
<li>Jim Loscutoff</li> | ||
<li>Frank Ramsey</li> | ||
<li>Robert Horry</li> | ||
<li>Adhemar da Silva</li> | ||
<li>Wang Junxia</li> | ||
<li>Wilma Rudolph</li> | ||
<li>Babe Didrikson-Zaharias</li> | ||
<li>Betty Cuthbert</li> | ||
<li>Fanny Blankers-Koen</li> | ||
<li>Florence Griffith-Joyner</li> | ||
<li>Irena Szewinska</li> | ||
<li>Jackie Joyner-Kersee</li> | ||
<li>Shirley Strickland</li> | ||
<li>Carl Lewis</li> | ||
<li>Emil Zatopek</li> | ||
<li>Haile Gebrselassie</li> | ||
<li>Jesse Owens</li> | ||
<li>Jim Thorpe</li> | ||
<li>Paavo Nurmi</li> | ||
<li>Sergei Bubka</li> | ||
<li>Usain Bolt</li> | ||
</ul> |
Oops, something went wrong.