Add the correct font weight for b and strong

This commit is contained in:
CJ Patoilo 2016-12-01 00:30:47 -03:00
parent 0b33f765d9
commit 905870176f
6 changed files with 24 additions and 15 deletions

17
dist/milligram.css vendored
View File

@ -6,6 +6,12 @@
* Licensed under the MIT license
*/
*,
*:after,
*:before {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-size: 62.5%;
@ -20,12 +26,6 @@ body {
line-height: 1.6;
}
*,
*:after,
*:before {
box-sizing: inherit;
}
blockquote {
border-left: 0.3rem solid #d1d1d1;
margin-left: 0;
@ -525,6 +525,11 @@ th:last-child {
padding-right: 0;
}
b,
strong {
font-weight: bold;
}
p {
margin-top: 0;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2,6 +2,12 @@
// Base
//
// Set box-sizing globally to handle padding and border widths
*,
*:after,
*:before
box-sizing: inherit
// The base font-size is set at 62.5% for having the convenience
// of sizing rems in a way that is similar to using px: 1.6rem = 16px
html
@ -16,9 +22,3 @@ body
font-weight: 300
letter-spacing: .01em
line-height: 1.6
// Set box-sizing globally to handle padding and border widths
*,
*:after,
*:before
box-sizing: inherit

View File

@ -2,6 +2,10 @@
// Typography
//
b,
strong
font-weight: bold
p
margin-top: 0