revises base styles, kbd

This commit is contained in:
Huy Tran 2018-07-23 21:23:22 +10:00
parent c1ab130c50
commit a03bb3f465
5 changed files with 21 additions and 11 deletions

View file

@ -58,6 +58,7 @@ blockquote {
} }
kbd { kbd {
font-family: $root-font-family;
padding: .1em .6em; padding: .1em .6em;
border: 1px solid $gray-2; border: 1px solid $gray-2;
font-size: 0.8em; font-size: 0.8em;

View file

@ -100,6 +100,8 @@
margin-top: .2rem; margin-top: .2rem;
} }
#references~ol { #references {
li {
font-size: .9rem; font-size: .9rem;
} }
}

View file

@ -26,7 +26,7 @@
.post--navigation { .post--navigation {
width: 800px; width: 800px;
max-width: calc(100% - 40px); max-width: calc(100% - 0px);
margin: 0 auto; margin: 0 auto;
margin-top: 60px; margin-top: 60px;
a { a {
@ -35,6 +35,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 15px; padding: 15px;
color: $post--navigation-color;
border: 2px solid $post--navigation-color; border: 2px solid $post--navigation-color;
line-height: 1.25; line-height: 1.25;
text-transform: uppercase; text-transform: uppercase;

View file

@ -1,6 +1,4 @@
* { * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; } box-sizing: border-box; }
html, html,
@ -156,6 +154,7 @@ blockquote {
border-left-color: #ae272f; } border-left-color: #ae272f; }
kbd { kbd {
font-family: system, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Droid Sans", "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
padding: .1em .6em; padding: .1em .6em;
border: 1px solid #eee; border: 1px solid #eee;
font-size: 0.8em; font-size: 0.8em;
@ -366,7 +365,7 @@ a {
.post--navigation { .post--navigation {
width: 800px; width: 800px;
max-width: calc(100% - 40px); max-width: calc(100% - 0px);
margin: 0 auto; margin: 0 auto;
margin-top: 60px; } margin-top: 60px; }
.post--navigation a { .post--navigation a {
@ -375,6 +374,7 @@ a {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 15px; padding: 15px;
color: #c2255c;
border: 2px solid #c2255c; border: 2px solid #c2255c;
line-height: 1.25; line-height: 1.25;
text-transform: uppercase; } text-transform: uppercase; }
@ -411,6 +411,8 @@ a {
pre { pre {
border: 1px solid #f9f9f9; border: 1px solid #f9f9f9;
border-radius: 2px; border-radius: 2px;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2; } tab-size: 2; }
pre code { pre code {
white-space: pre-wrap; } white-space: pre-wrap; }
@ -530,6 +532,7 @@ body .gist td {
text-transform: uppercase; text-transform: uppercase;
color: #fff; color: #fff;
background-color: #479fc8; background-color: #479fc8;
-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
transform: rotate(45deg) translate3d(0, 0, 0); } transform: rotate(45deg) translate3d(0, 0, 0); }
.project__featured-image .ribbon .text:before { .project__featured-image .ribbon .text:before {
border-left: 5px solid transparent; border-left: 5px solid transparent;
@ -631,6 +634,9 @@ body .gist td {
@media (min-width: 58em) { @media (min-width: 58em) {
html, html,
body { body {
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
text-size-adjust: none; text-size-adjust: none;
font-size: 17px; font-size: 17px;
font-weight: 400; font-weight: 400;
@ -679,7 +685,7 @@ body .gist td {
margin-bottom: .2rem; margin-bottom: .2rem;
margin-top: .2rem; } margin-top: .2rem; }
#references ~ ol { #references li {
font-size: .9rem; } font-size: .9rem; }
/*# sourceMappingURL=hyde-hyde.css.map */ /*# sourceMappingURL=hyde-hyde.css.map */

File diff suppressed because one or more lines are too long