Skip to content

Commit

Permalink
Merge pull request #30 from h5bp/v1-1-0
Browse files Browse the repository at this point in the history
updates for v2.0.0
  • Loading branch information
roblarsen committed Jun 3, 2019
2 parents d1a0b51 + de7dcfb commit 2afec30
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 12 deletions.
20 changes: 15 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
### Changelog
## Changelog

### 2.0.0 (June 4, 2019)

- Add `.stylelintrc` config ([#18](https://github.com/h5bp/main.css/pull/18))
- Rename `visuallyhidden` to `sr-only` ([#27](https://github.com/h5bp/main.css/pull/27))
- Fix broken link to 'printing tables' page ([#20](https://github.com/h5bp/main.css/pull/20))
- Alphabetize properties ([#20](https://github.com/h5bp/main.css/pull/15))
- Add `stylelint-config-recommended` to `package.json`
- Add `CONTRIBUTORS.md`([#9](https://github.com/h5bp/main.css/pull/9))
- Minor devdeps and README updates ([#11](https://github.com/h5bp/main.css/pull/11)), ([#24](https://github.com/h5bp/main.css/pull/24))

### 1.0.0 (October 8, 2018)

- 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)
- Added travis.yml [`88b4250`](https://github.com/h5bp/main.css/commit/88b42503c0f223103a090854603816f8dbd84367)
- Added .github folder [`#2`](https://github.com/h5bp/main.css/pull/2)
- Added .editorconfig [`#1`](https://github.com/h5bp/main.css/pull/1)
- 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))
- Added `travis.yml` ([88b4250](https://github.com/h5bp/main.css/commit/88b42503c0f223103a090854603816f8dbd84367))
- Added `.github` folder ([#2](https://github.com/h5bp/main.css/pull/2))
- Added `.editorconfig` ([#1](https://github.com/h5bp/main.css/pull/1))
2 changes: 1 addition & 1 deletion dist/_base.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/_helpers.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* ==========================================================================
Helper classes
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/_mqs.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Expand Down
2 changes: 1 addition & 1 deletion dist/_print.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
Expand Down
9 changes: 7 additions & 2 deletions dist/main.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
Expand All @@ -25,6 +25,11 @@ html {
* Customize the background color to match your design.
*/

::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}

::selection {
background: #b3d4fc;
text-shadow: none;
Expand Down Expand Up @@ -236,7 +241,7 @@ textarea {
}
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
* https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "main.css",
"version": "1.0.0",
"version": "2.0.0",
"description": "The main.css file from HTML5 Boilerplate",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 2afec30

Please sign in to comment.