Skip to content

Commit 96b9a2c

Browse files
committed
1.0.0
1 parent e6395e0 commit 96b9a2c

File tree

5 files changed

+31
-20
lines changed

5 files changed

+31
-20
lines changed

changelog.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,26 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [1.0.0-beta-1](https://github.com/ungoldman/style.css/releases/v1.0.0-beta-1) - 2016-09-02
8+
## [1.0.0](https://github.com/ungoldman/style.css/releases/v1.0.0) - 2018-02-07
9+
10+
### Changes
11+
12+
- refactor: heading size, weight, small
13+
14+
### Misc
15+
16+
- docs(readme): shorten CDN links
17+
- docs(readme): use unpkg for download buttons
18+
- docs(site): adjust max width of main
19+
- docs(site): capitalize style guide title
20+
21+
## [1.0.0-beta-1](https://github.com/ungoldman/style.css/releases/v1.0.0-beta-1) - 2017-09-02
922

1023
### Fixes
1124

1225
- adjust code font-size to 90%
1326

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

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "style.css",
33
"description": "Classless stylesheet for markdown documents.",
4-
"version": "1.0.0-beta-1",
4+
"version": "1.0.0",
55
"author": "Nate Goldman <[email protected]>",
66
"bugs": {
77
"url": "https://github.com/ungoldman/style.css/issues"

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ A classless stylesheet for markdown documents.
3838

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

4444
```sh

serif.css

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! style.css v1.0.0-beta-1 | ISC License | https://github.com/ungoldman/style.css */
1+
/*! style.css v1.0.0 | ISC License | https://github.com/ungoldman/style.css */
22
html {
33
color: #303030;
44
background-color: white;
@@ -56,10 +56,10 @@ h3,
5656
h4,
5757
h5,
5858
h6 {
59+
font-weight: 500;
5960
line-height: 1.25em;
60-
margin-top: 2rem;
6161
margin-bottom: 1.25rem;
62-
font-weight: 400;
62+
margin-top: 2rem;
6363
position: relative;
6464
}
6565

@@ -69,10 +69,9 @@ h3 small,
6969
h4 small,
7070
h5 small,
7171
h6 small {
72-
font-weight: 300;
73-
font-size: 0.7em;
74-
margin-left: 0.5em;
7572
color: #777;
73+
font-size: 0.7em;
74+
font-weight: 300;
7675
}
7776

7877
h1 code,
@@ -81,11 +80,11 @@ h3 code,
8180
h4 code,
8281
h5 code,
8382
h6 code {
84-
font-size: 90%;
83+
font-size: 0.9em;
8584
}
8685

8786
h1 {
88-
font-size: 3em;
87+
font-size: 2.75em;
8988
}
9089

9190
h2 {

style.css

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! style.css v1.0.0-beta-1 | ISC License | https://github.com/ungoldman/style.css */
1+
/*! style.css v1.0.0 | ISC License | https://github.com/ungoldman/style.css */
22
html {
33
color: #303030;
44
background-color: white;
@@ -58,10 +58,10 @@ h3,
5858
h4,
5959
h5,
6060
h6 {
61+
font-weight: 500;
6162
line-height: 1.25em;
62-
margin-top: 2rem;
6363
margin-bottom: 1.25rem;
64-
font-weight: 400;
64+
margin-top: 2rem;
6565
position: relative;
6666
}
6767

@@ -71,10 +71,9 @@ h3 small,
7171
h4 small,
7272
h5 small,
7373
h6 small {
74-
font-weight: 300;
75-
font-size: 0.7em;
76-
margin-left: 0.5em;
7774
color: #777;
75+
font-size: 0.7em;
76+
font-weight: 300;
7877
}
7978

8079
h1 code,
@@ -83,11 +82,11 @@ h3 code,
8382
h4 code,
8483
h5 code,
8584
h6 code {
86-
font-size: 90%;
85+
font-size: 0.9em;
8786
}
8887

8988
h1 {
90-
font-size: 3em;
89+
font-size: 2.75em;
9190
}
9291

9392
h2 {

0 commit comments

Comments
 (0)