initial commit
This commit is contained in:
227
_sass/_base.scss
Normal file
227
_sass/_base.scss
Normal file
@ -0,0 +1,227 @@
|
||||
/**
|
||||
* Reset some basic elements
|
||||
*/
|
||||
body, h1, h2, h3, h4, h5, h6,
|
||||
p, blockquote, pre, hr,
|
||||
dl, dd, ol, ul, figure {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Basic styling
|
||||
*/
|
||||
body {
|
||||
font-family: $base-font-family;
|
||||
font-size: $base-font-size;
|
||||
line-height: $base-line-height;
|
||||
font-weight: 300;
|
||||
color: $text-color;
|
||||
background-color: $background-color;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Set `margin-bottom` to maintain vertical rhythm
|
||||
*/
|
||||
h1, h2, h3, h4, h5, h6,
|
||||
p, blockquote, pre,
|
||||
ul, ol, dl, figure,
|
||||
%vertical-rhythm {
|
||||
margin-bottom: $spacing-unit / 2;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Images
|
||||
*/
|
||||
img {
|
||||
max-width: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Figures
|
||||
*/
|
||||
figure > img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: $small-font-size;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Lists
|
||||
*/
|
||||
ul, ol {
|
||||
margin-left: $spacing-unit;
|
||||
}
|
||||
|
||||
li {
|
||||
> ul,
|
||||
> ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Headings
|
||||
*/
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Links
|
||||
*/
|
||||
a {
|
||||
color: $brand-color;
|
||||
text-decoration: none;
|
||||
|
||||
&:visited {
|
||||
color: darken($brand-color, 15%);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $text-color;
|
||||
// text-decoration: underline;
|
||||
border-bottom: 1px solid $text-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Blockquotes
|
||||
*/
|
||||
blockquote {
|
||||
color: $grey-color;
|
||||
border-left: 4px solid $grey-color-light;
|
||||
padding-left: $spacing-unit / 2;
|
||||
font-size: 18px;
|
||||
letter-spacing: -1px;
|
||||
font-style: italic;
|
||||
|
||||
> :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Code formatting
|
||||
*/
|
||||
pre,
|
||||
code {
|
||||
font-size: 15px;
|
||||
border: 1px solid $grey-color-light;
|
||||
border-radius: 3px;
|
||||
background-color: #eef;
|
||||
}
|
||||
|
||||
code {
|
||||
padding: 1px 5px;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 8px 12px;
|
||||
overflow-x: scroll;
|
||||
|
||||
> code {
|
||||
border: 0;
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Wrapper
|
||||
*/
|
||||
.wrapper {
|
||||
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
|
||||
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
padding-right: $spacing-unit;
|
||||
padding-left: $spacing-unit;
|
||||
@extend %clearfix;
|
||||
|
||||
@include media-query($on-laptop) {
|
||||
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
|
||||
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
||||
padding-right: $spacing-unit / 2;
|
||||
padding-left: $spacing-unit / 2;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Clearfix
|
||||
*/
|
||||
%clearfix {
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Icons
|
||||
*/
|
||||
.icon {
|
||||
|
||||
> svg {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
vertical-align: middle;
|
||||
|
||||
path {
|
||||
fill: $grey-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Damion';
|
||||
src: url(fonts/Damion_gdi.woff);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Ubuntu';
|
||||
src: url(fonts/Ubuntu_gdi.woff);
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Ubuntu Light';
|
||||
src: url(fonts/Ubuntu-Light_gdi.woff);
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Ubuntu Mono';
|
||||
src: url(fonts/UbuntuMono-Regular_gdi.woff);
|
||||
}
|
94
_sass/_layout.scss
Normal file
94
_sass/_layout.scss
Normal file
@ -0,0 +1,94 @@
|
||||
body {
|
||||
background: #FFF7EC;
|
||||
height: auto;
|
||||
padding-bottom: 5rem;
|
||||
}
|
||||
|
||||
header {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding-top: $spacing-unit;
|
||||
|
||||
img {
|
||||
// border-radius: 50%;
|
||||
margin: $spacing-unit auto;
|
||||
// border: 1px solid #F5DFC3;
|
||||
}
|
||||
h1 {
|
||||
font-size: 4rem;
|
||||
font-family: 'Damion';
|
||||
}
|
||||
h1 a, & > a {
|
||||
text-decoration: none;
|
||||
color: $text-color !important;
|
||||
|
||||
&:hover {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
nav {
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
nav a {
|
||||
margin: 0 1rem;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: $brand-color;
|
||||
}
|
||||
}
|
||||
|
||||
.page-heading {
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.post-list, .post-header {
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
margin-bottom: 5rem;
|
||||
|
||||
h2, h1 {
|
||||
text-align: center;
|
||||
}
|
||||
.post-meta {
|
||||
font-size: $small-font-size;
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
article p img {
|
||||
margin: 2rem auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.post-list h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.post article h2 {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
article .image-caption {
|
||||
display: block;
|
||||
text-align: center;
|
||||
font-size: 10pt;
|
||||
color: $grey-color;
|
||||
margin-top: -1.5rem;
|
||||
}
|
||||
|
||||
.rss-subscribe {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-top: 1px solid lighten($grey-color, 20%);
|
||||
margin: 1.5rem 0;
|
||||
}
|
83
_sass/_syntax-highlighting.scss
Normal file
83
_sass/_syntax-highlighting.scss
Normal file
@ -0,0 +1,83 @@
|
||||
/* Tomorrow Light */
|
||||
|
||||
/* For use with Jekyll and Pygments */
|
||||
|
||||
/* ----------------------------------------------------------*/
|
||||
|
||||
pre, code {
|
||||
font-family: 'Ubuntu Mono';
|
||||
font-size: 11pt;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
code {background: #fff; padding: 2px 4px; border-radius: 3px; border: 1px solid #ccc;};
|
||||
|
||||
.highlight pre {padding: 8px 10px;}
|
||||
|
||||
.highlight pre,
|
||||
.highlight code,
|
||||
.highlight .hll { background-color: #fff; border-radius: 3px; }
|
||||
.highlight .c { color: #8e908c } /* Comment */
|
||||
.highlight .err { color: #c82829 } /* Error */
|
||||
.highlight .k { color: #8959a8 } /* Keyword */
|
||||
.highlight .l { color: #f5871f } /* Literal */
|
||||
.highlight .n { color: #4d4d4c } /* Name */
|
||||
.highlight .o { color: #3e999f } /* Operator */
|
||||
.highlight .p { color: #4d4d4c } /* Punctuation */
|
||||
.highlight .cm { color: #8e908c } /* Comment.Multiline */
|
||||
.highlight .cp { color: #8e908c } /* Comment.Preproc */
|
||||
.highlight .c1 { color: #8e908c } /* Comment.Single */
|
||||
.highlight .cs { color: #8e908c } /* Comment.Special */
|
||||
.highlight .gd { color: #c82829 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gh { color: #4d4d4c; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #718c00 } /* Generic.Inserted */
|
||||
.highlight .gp { color: #8e908c; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #3e999f; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .kc { color: #8959a8 } /* Keyword.Constant */
|
||||
.highlight .kd { color: #8959a8 } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #3e999f } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #8959a8 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #8959a8 } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #eab700 } /* Keyword.Type */
|
||||
.highlight .ld { color: #718c00 } /* Literal.Date */
|
||||
.highlight .m { color: #f5871f } /* Literal.Number */
|
||||
.highlight .s { color: #718c00 } /* Literal.String */
|
||||
.highlight .na { color: #4271ae } /* Name.Attribute */
|
||||
.highlight .nb { color: #4d4d4c } /* Name.Builtin */
|
||||
.highlight .nc { color: #eab700 } /* Name.Class */
|
||||
.highlight .no { color: #c82829 } /* Name.Constant */
|
||||
.highlight .nd { color: #3e999f } /* Name.Decorator */
|
||||
.highlight .ni { color: #4d4d4c } /* Name.Entity */
|
||||
.highlight .ne { color: #c82829 } /* Name.Exception */
|
||||
.highlight .nf { color: #4271ae } /* Name.Function */
|
||||
.highlight .nl { color: #4d4d4c } /* Name.Label */
|
||||
.highlight .nn { color: #eab700 } /* Name.Namespace */
|
||||
.highlight .nx { color: #4271ae } /* Name.Other */
|
||||
.highlight .py { color: #4d4d4c } /* Name.Property */
|
||||
.highlight .nt { color: #3e999f } /* Name.Tag */
|
||||
.highlight .nv { color: #c82829 } /* Name.Variable */
|
||||
.highlight .ow { color: #3e999f } /* Operator.Word */
|
||||
.highlight .w { color: #4d4d4c } /* Text.Whitespace */
|
||||
.highlight .mf { color: #f5871f } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #f5871f } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #f5871f } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #f5871f } /* Literal.Number.Oct */
|
||||
.highlight .sb { color: #718c00 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #4d4d4c } /* Literal.String.Char */
|
||||
.highlight .sd { color: #8e908c } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #718c00 } /* Literal.String.Double */
|
||||
.highlight .se { color: #f5871f } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #718c00 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #f5871f } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #718c00 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #718c00 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #718c00 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #718c00 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #4d4d4c } /* Name.Builtin.Pseudo */
|
||||
.highlight .vc { color: #c82829 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #c82829 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #c82829 } /* Name.Variable.Instance */
|
||||
.highlight .il { color: #f5871f } /* Literal.Number.Integer.Long */
|
||||
.highlight .lineno {user-select: none; -moz-user-select: none; -webkit-user-select: none;}
|
67
_sass/jekyll-monokai.scss
Normal file
67
_sass/jekyll-monokai.scss
Normal file
@ -0,0 +1,67 @@
|
||||
/* Monokai */
|
||||
|
||||
/* For use with Jekyll and Pygments */
|
||||
|
||||
/* ----------------------------------------------------------*/
|
||||
|
||||
.highlight pre,
|
||||
.highlight code,
|
||||
.highlight .hll { background-color: #49483e; border: 1px solid #ccc; padding: 6px 10px; border-radius: 3px; }
|
||||
.highlight .c { color: #75715e } /* Comment */
|
||||
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
||||
.highlight .k { color: #66d9ef } /* Keyword */
|
||||
.highlight .l { color: #ae81ff } /* Literal */
|
||||
.highlight .n { color: #f8f8f2 } /* Name */
|
||||
.highlight .o { color: #f92672 } /* Operator */
|
||||
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
||||
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
||||
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
||||
.highlight .c1 { color: #75715e } /* Comment.Single */
|
||||
.highlight .cs { color: #75715e } /* Comment.Special */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
||||
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
||||
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
||||
.highlight .m { color: #ae81ff } /* Literal.Number */
|
||||
.highlight .s { color: #e6db74 } /* Literal.String */
|
||||
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
||||
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
||||
.highlight .nc { color: #a6e22e } /* Name.Class */
|
||||
.highlight .no { color: #66d9ef } /* Name.Constant */
|
||||
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
||||
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
||||
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
||||
.highlight .nf { color: #a6e22e } /* Name.Function */
|
||||
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
||||
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
||||
.highlight .nx { color: #a6e22e } /* Name.Other */
|
||||
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
||||
.highlight .nt { color: #f92672 } /* Name.Tag */
|
||||
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
||||
.highlight .ow { color: #f92672 } /* Operator.Word */
|
||||
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
||||
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
||||
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
||||
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
||||
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
||||
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
||||
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
Reference in New Issue
Block a user