1
0
mirror of https://github.com/robsheldon/sscaffold-css.git synced 2025-09-30 07:39:30 +02:00

9 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
Rob
03ba3378c6 Update package.json for 0.1.1. Oops. 2020-03-08 16:47:42 -07:00
Rob
9cdcbad728 README: 0.1.0 -> 0.1.1 2020-03-08 16:37:22 -07:00
Rob
400ec8e232 Add a CHANGELOG file with release notes. 2020-03-08 16:33:12 -07:00
Rob
90686f5f43 Try a new CSS minifier to fix GH issue #9. 2020-03-08 15:57:25 -07:00
Rob
dd2ea33000 Add missing "and" keywords in media queries.
Fixes GH issue #10, thank you for the report.
2020-03-08 15:46:14 -07:00
Rob
897ae6a473 Update README with npm and jsdelivr instructions. 2020-01-15 18:18:41 -08:00
Rob
b0467d948f Add filename to package.json for cdnjs. 2020-01-15 17:49:20 -08:00
Rob
737bb3878b Update description in package.json to better explain what this thing does. 2020-01-15 17:43:04 -08:00
Rob
0c176db4a7 Update package.json for cdnjs compatibility. (Indentation...) 2020-01-15 17:13:26 -08:00
5 changed files with 58 additions and 22 deletions

23
CHANGELOG.md Normal file
View File

@@ -0,0 +1,23 @@
# CHANGELOG
[sscaffold-css](https://sscaffold-css.com/) does its best to follow [semantic versioning](https://semver.org/):
* MAJOR releases may break layouts using previous versions and should be thoroughly tested;
* MINOR releases make an effort to not break layouts using previous versions but may contain bugfixes that could change some aspects of the layout;
* PATCH releases include only small, simple bug fixes and should be compatible with all previous versions of the same MAJOR release.
PATCH releases will be backported to previous MAJOR releases when applicable and I'm in the mood for it.
## RELEASES
### 0.1.1
March 8, 2020
* Fix missing `and` from `@media` queries (https://github.com/robsheldon/sscaffold-css/issues/10)
* Fix `svg+xml` values mangled by a naughty CSS minifier; trying a different minifier (https://github.com/robsheldon/sscaffold-css/issues/9)
### 0.1.0
January 15, 2020
* Initial release following limited pre-release testing.

View File

@@ -34,9 +34,21 @@ For 3K over Milligram and 7K over Skeleton you save an https request and get the
## Using sscaffold
I'm releasing it now as a preview. Once 0.1.0 is released, I'll see about getting it onto cdnjs and then following a semantic versioning system from there.
The current version is 0.1.1.
If you want it added to your favorite repository / dependency management system, open an issue requesting it so that I know it's worth doing and I'll get on it.
#### jsdelivr:
```
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sscaffold-css@0.1.0/sscaffold.min.css" integrity="sha256-NxJ/Enl6+QKA3ysgZq44/qc6cWmUXbAB/hl+QFBuMck=" crossorigin="anonymous">
```
#### npm:
```
npm install sscaffold-css
```
If you want it added to another repository, dependency management system, or cdn, open an issue requesting it and I'll get on it.
## Documentation

View File

@@ -1,18 +1,19 @@
{
"name": "sscaffold-css",
"version": "0.1.0",
"description": "Base file for sscaffold-css.",
"homepage": "https://sscaffold-css.com/",
"repository": "robsheldon/sscaffold-css",
"license": "MIT",
"author": "Rob Sheldon <rob@rescue.dev>",
"private": false,
"main": "sscaffold.css",
"keywords": [
"css",
"sscaffold",
"milligram",
"skeleton",
"normalize"
]
"name": "sscaffold-css",
"version": "0.1.1",
"description": "Updated alternative to milligram and skeleton.",
"filename": "sscaffold.min.css",
"homepage": "https://sscaffold-css.com/",
"repository": "robsheldon/sscaffold-css",
"license": "MIT",
"author": "Rob Sheldon <rob@rescue.dev>",
"private": false,
"main": "sscaffold.css",
"keywords": [
"css",
"sscaffold",
"milligram",
"skeleton",
"normalize"
]
}

View File

@@ -407,7 +407,7 @@ only screen and (-webkit-max-device-pixel-ratio: 0.9) and (min-width: 750px) {
12px at 2560 x 1600 and larger. */
@media
only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi),
only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) {
only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) {
html {
font-size: 62.5%;
}
@@ -416,7 +416,7 @@ only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel
@media
only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 1500px),
only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1500px) {
only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1500px) {
html {
font-size: 68.75%;
}
@@ -425,7 +425,7 @@ only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel
@media
only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 2500px),
only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 2500px) {
only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 2500px) {
html {
font-size: 75%;
}

2
sscaffold.min.css vendored

File diff suppressed because one or more lines are too long