Skip to content

Commit 2afec30

Browse files
authored
Merge pull request #30 from h5bp/v1-1-0
updates for v2.0.0
2 parents d1a0b51 + de7dcfb commit 2afec30

File tree

7 files changed

+27
-12
lines changed

7 files changed

+27
-12
lines changed

CHANGELOG.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
### Changelog
1+
## Changelog
2+
3+
### 2.0.0 (June 4, 2019)
4+
5+
- Add `.stylelintrc` config ([#18](https://github.com/h5bp/main.css/pull/18))
6+
- Rename `visuallyhidden` to `sr-only` ([#27](https://github.com/h5bp/main.css/pull/27))
7+
- Fix broken link to 'printing tables' page ([#20](https://github.com/h5bp/main.css/pull/20))
8+
- Alphabetize properties ([#20](https://github.com/h5bp/main.css/pull/15))
9+
- Add `stylelint-config-recommended` to `package.json`
10+
- Add `CONTRIBUTORS.md`([#9](https://github.com/h5bp/main.css/pull/9))
11+
- Minor devdeps and README updates ([#11](https://github.com/h5bp/main.css/pull/11)), ([#24](https://github.com/h5bp/main.css/pull/24))
212

313
### 1.0.0 (October 8, 2018)
414

5-
- Break main.css into multiple files, implements build [`ddd8e50`](https://github.com/h5bp/main.css/commit/ddd8e50c1b80a108a0552b359c1e717dad484d3b) [`13c6fd5`](https://github.com/h5bp/main.css/commit/13c6fd562949e63959c1e5a30957473e0806dad4)
6-
- Added travis.yml [`88b4250`](https://github.com/h5bp/main.css/commit/88b42503c0f223103a090854603816f8dbd84367)
7-
- Added .github folder [`#2`](https://github.com/h5bp/main.css/pull/2)
8-
- Added .editorconfig [`#1`](https://github.com/h5bp/main.css/pull/1)
15+
- Break `main.css` into multiple files, implements build ([ddd8e50](https://github.com/h5bp/main.css/commit/ddd8e50c1b80a108a0552b359c1e717dad484d3b)) [`13c6fd5`](https://github.com/h5bp/main.css/commit/13c6fd562949e63959c1e5a30957473e0806dad4))
16+
- Added `travis.yml` ([88b4250](https://github.com/h5bp/main.css/commit/88b42503c0f223103a090854603816f8dbd84367))
17+
- Added `.github` folder ([#2](https://github.com/h5bp/main.css/pull/2))
18+
- Added `.editorconfig` ([#1](https://github.com/h5bp/main.css/pull/1))

dist/_base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
1+
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
22
/* ==========================================================================
33
Base styles: opinionated defaults
44
========================================================================== */

dist/_helpers.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
1+
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
22
/* ==========================================================================
33
Helper classes
44
========================================================================== */

dist/_mqs.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
1+
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
22
/* ==========================================================================
33
EXAMPLE Media Queries for Responsive Design.
44
These examples override the primary ('mobile first') styles.

dist/_print.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
1+
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
22
/* ==========================================================================
33
Print styles.
44
Inlined to avoid the additional HTTP request:

dist/main.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
1+
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
22
/*
33
* What follows is the result of much research on cross-browser styling.
44
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
@@ -25,6 +25,11 @@ html {
2525
* Customize the background color to match your design.
2626
*/
2727

28+
::-moz-selection {
29+
background: #b3d4fc;
30+
text-shadow: none;
31+
}
32+
2833
::selection {
2934
background: #b3d4fc;
3035
text-shadow: none;
@@ -236,7 +241,7 @@ textarea {
236241
}
237242
/*
238243
* Printing Tables:
239-
* http://css-discuss.incutio.com/wiki/Printing_Tables
244+
* https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
240245
*/
241246
thead {
242247
display: table-header-group;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "main.css",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "The main.css file from HTML5 Boilerplate",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)