🎉 Initial commit

This commit is contained in:
piharpi
2019-03-24 17:47:48 +07:00
parent 09ac49afec
commit 2c26100c06
50 changed files with 2213 additions and 37 deletions

View File

@@ -0,0 +1,36 @@
/**
* Code formatting
*/
code {
letter-spacing: .1px;
text-rendering: optimizeLegibility;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
font-size: $small-font-size;
padding: 1px 3px;
border: 1px solid #d8d8d8;
background-color: #f5f5f5;
color: #3B454E;
border-radius: 2px;
font-family: $base-syntax-font;
}
pre.highlight {
background-color: #f5f5f5;
border-radius: 5px;
padding: 15px;
overflow: auto;
line-height: 24px;
color: #3B454E;
font-family: $base-syntax-font;
> code {
font-size: $small-font-size;
padding: 0;
overflow-x: auto;
line-height: 24px;
border: 0;
font-feature-settings: "calt" 1;
letter-spacing: .1px;
}
}