Skip to content

Commit 3331c9a

Browse files
committed
Update project configuration
1 parent 07985ad commit 3331c9a

22 files changed

+9
-12
lines changed

CHANGELOG.md

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

features/README.md renamed to css-features/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# CSS Database
22

3+
CSS Database is a comprehensive list of CSS features and their positions in the process of becoming implemented web standards.
4+
35
### @apply rules
46

57
> Status: Unrecognized
@@ -60,7 +62,7 @@ A syntax for using a grid concept to lay out content
6062

6163
- https://www.w3.org/TR/css-grid-1/
6264

63-
### hex #rgba colors
65+
### hex alpha colors
6466

6567
> Status: Unrecognized
6668
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

gh-pages/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<img class="cssdb-header-branding" src="https://rawgit.com/jonathantneal/media-expressions-spec/gh-pages/css-logo.svg" alt="CSS Logo" width="90" height="90">
1010
<div class="cssdb-header-heading">
1111
<h1 class="cssdb-header-title">What’s next for CSS?</h1>
12-
<p class="cssdb-header-desc">CSS Database is a comprehensive collection of CSS features and their positions in the process of becoming implemented web standards. These positions reflect the TC39 process.</p>
12+
<p class="cssdb-header-desc">CSS Database is a comprehensive list of CSS features and their positions in the process of becoming implemented web standards.</p>
1313
</div>
1414
<a class="cssdb-header-link" href="">What are the stages?</a>
1515
</header>
@@ -60,7 +60,7 @@ <h1 class="cssdb-header-title">What’s next for CSS?</h1>
6060
<td class="cssdb-feature-spec"><a href="https://www.w3.org/TR/css-grid-1/">https://www.w3.org/TR/css-grid-1/</a></td>
6161
<td class="cssdb-feature-fill"></td>
6262
</tr><tr class="cssdb-feature">
63-
<td class="cssdb-feature-title">hex #rgba colors</td>
63+
<td class="cssdb-feature-title">hex alpha colors</td>
6464
<td class="cssdb-feature-stage stage--null">NR</td>
6565
<td class="cssdb-feature-desc">A 4 & 8 character hex notation for color to include the opacity level</td>
6666
<td class="cssdb-feature-spec"><a href="https://drafts.csswg.org/css-color/#hex-notation">https://drafts.csswg.org/css-color/#hex-notation</a></td>

index.js

Whitespace-only changes.

tasks/publish-features.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ const eslit = require('eslit');
33
const fs = require('fse');
44

55
// features directory
6-
const dir = fs.join(fs.dirname(__dirname), 'features');
6+
const dir = fs.join(fs.dirname(__dirname), 'css-features');
77
const md = fs.join(dir, 'README.md');
8-
const tpl = fs.join(__dirname, '_features.md');
8+
const tpl = fs.join(__dirname, 'templates', '_features.md');
99

1010
// promise a list of files within the features directory
1111
fs.readdir(dir).then(

tasks/publish-gh-pages.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ const eslit = require('eslit');
33
const fs = require('fse');
44

55
// features directory
6-
const src = fs.join(fs.dirname(__dirname), 'features');
6+
const src = fs.join(fs.dirname(__dirname), 'css-features');
77
const dir = fs.join(fs.dirname(__dirname), 'gh-pages');
88
const md = fs.join(dir, 'index.html');
9-
const tpl = fs.join(__dirname, '_gh-pages.html');
9+
const tpl = fs.join(__dirname, 'templates', '_gh-pages.html');
1010

1111
// promise a list of files within the features directory
1212
fs.readdir(src).then(
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)