Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ungoldman committed Feb 8, 2018
1 parent e6395e0 commit 96b9a2c
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 20 deletions.
17 changes: 15 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.0-beta-1](https://github.com/ungoldman/style.css/releases/v1.0.0-beta-1) - 2016-09-02
## [1.0.0](https://github.com/ungoldman/style.css/releases/v1.0.0) - 2018-02-07

### Changes

- refactor: heading size, weight, small

### Misc

- docs(readme): shorten CDN links
- docs(readme): use unpkg for download buttons
- docs(site): adjust max width of main
- docs(site): capitalize style guide title

## [1.0.0-beta-1](https://github.com/ungoldman/style.css/releases/v1.0.0-beta-1) - 2017-09-02

### Fixes

- adjust code font-size to 90%

## [1.0.0-beta](https://github.com/ungoldman/style.css/releases/v1.0.0-beta) - 2016-09-01
## [1.0.0-beta](https://github.com/ungoldman/style.css/releases/v1.0.0-beta) - 2017-09-01

This release marks the end of a very long alpha phase!

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "style.css",
"description": "Classless stylesheet for markdown documents.",
"version": "1.0.0-beta-1",
"version": "1.0.0",
"author": "Nate Goldman <[email protected]>",
"bugs": {
"url": "https://github.com/ungoldman/style.css/issues"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ A classless stylesheet for markdown documents.

```html
<!-- CDN Production (specific release) -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]-beta">
<link rel="stylesheet" href="https://unpkg.com/[email protected]">
```

```sh
Expand Down
15 changes: 7 additions & 8 deletions serif.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! style.css v1.0.0-beta-1 | ISC License | https://github.com/ungoldman/style.css */
/*! style.css v1.0.0 | ISC License | https://github.com/ungoldman/style.css */
html {
color: #303030;
background-color: white;
Expand Down Expand Up @@ -56,10 +56,10 @@ h3,
h4,
h5,
h6 {
font-weight: 500;
line-height: 1.25em;
margin-top: 2rem;
margin-bottom: 1.25rem;
font-weight: 400;
margin-top: 2rem;
position: relative;
}

Expand All @@ -69,10 +69,9 @@ h3 small,
h4 small,
h5 small,
h6 small {
font-weight: 300;
font-size: 0.7em;
margin-left: 0.5em;
color: #777;
font-size: 0.7em;
font-weight: 300;
}

h1 code,
Expand All @@ -81,11 +80,11 @@ h3 code,
h4 code,
h5 code,
h6 code {
font-size: 90%;
font-size: 0.9em;
}

h1 {
font-size: 3em;
font-size: 2.75em;
}

h2 {
Expand Down
15 changes: 7 additions & 8 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! style.css v1.0.0-beta-1 | ISC License | https://github.com/ungoldman/style.css */
/*! style.css v1.0.0 | ISC License | https://github.com/ungoldman/style.css */
html {
color: #303030;
background-color: white;
Expand Down Expand Up @@ -58,10 +58,10 @@ h3,
h4,
h5,
h6 {
font-weight: 500;
line-height: 1.25em;
margin-top: 2rem;
margin-bottom: 1.25rem;
font-weight: 400;
margin-top: 2rem;
position: relative;
}

Expand All @@ -71,10 +71,9 @@ h3 small,
h4 small,
h5 small,
h6 small {
font-weight: 300;
font-size: 0.7em;
margin-left: 0.5em;
color: #777;
font-size: 0.7em;
font-weight: 300;
}

h1 code,
Expand All @@ -83,11 +82,11 @@ h3 code,
h4 code,
h5 code,
h6 code {
font-size: 90%;
font-size: 0.9em;
}

h1 {
font-size: 3em;
font-size: 2.75em;
}

h2 {
Expand Down

0 comments on commit 96b9a2c

Please sign in to comment.