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 {
font-family: $root-font-family;
padding: .1em .6em;
border: 1px solid $gray-2;
font-size: 0.8em;

View file

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

View file

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

View file

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

File diff suppressed because one or more lines are too long