-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5381ef
commit a592ee1
Showing
6 changed files
with
222 additions
and
151 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* 1. Use standards-like styling in all browsers (opinionated). | ||
* 2. Inherit typography styling in all browsers (opinionated). | ||
*/ | ||
|
||
button, | ||
input, | ||
select, | ||
textarea { | ||
background-color: transparent; /* 1 */ | ||
border: 0 solid; /* 1 */ | ||
border-radius: 0.25em; /* 1 */ | ||
box-shadow: inset 0 0 0 1px WindowFrame; /* 1 */ | ||
color: inherit; /* 1 */ | ||
font-family: inherit; /* 2 */ | ||
font-size: inherit; /* 2 */ | ||
line-height: inherit; /* 2 */ | ||
padding: 0.25em 0.375em; /* 1 */ | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"name": "sanitize.css", | ||
"version": "8.0.1", | ||
"version": "9.0.0", | ||
"description": "A best-practices CSS foundation", | ||
"author": "Jonathan Neal <[email protected]>", | ||
"contributors": [ | ||
|
@@ -14,11 +14,13 @@ | |
"main": "sanitize.css", | ||
"style": "sanitize.css", | ||
"files": [ | ||
"sanitize.css" | ||
"forms.css", | ||
"sanitize.css", | ||
"typography.css" | ||
], | ||
"scripts": { | ||
"prepublishOnly": "npm test", | ||
"test": "stylelint sanitize.css" | ||
"test": "stylelint forms.css sanitize.css typography.css" | ||
}, | ||
"devDependencies": { | ||
"stylelint": "^10.0.1", | ||
|
Oops, something went wrong.