First commit
This commit is contained in:
commit
4cc771cd74
406
assets/css/normalize.css
vendored
Executable file
406
assets/css/normalize.css
vendored
Executable file
@ -0,0 +1,406 @@
|
||||
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
|
||||
|
||||
/* ==========================================================================
|
||||
HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined in IE 8/9.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct `inline-block` display not defined in IE 8/9.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
video {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9.
|
||||
* Hide the `template` element in IE, Safari, and Firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Base
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `outline` inconsistency between Chrome and other browsers.
|
||||
*/
|
||||
|
||||
a:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Typography
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari 5 and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct font family set oddly in Safari 5 and Chrome.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, serif;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability of pre-formatted text in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set consistent quote types.
|
||||
*/
|
||||
|
||||
q {
|
||||
quotes: "\201C" "\201D" "\2018" "\2019";
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow displayed oddly in IE 9.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Figures
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari 5.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct font family not being inherited in all browsers.
|
||||
* 2. Correct font size not being inherited in all browsers.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 2 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
button,
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
|
||||
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9.
|
||||
* 2. Remove excess padding in IE 8/9.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
||||
* on OS X.
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove default vertical scrollbar in IE 8/9.
|
||||
* 2. Improve readability and alignment in all browsers.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto; /* 1 */
|
||||
vertical-align: top; /* 2 */
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
952
assets/css/screen.css
Normal file
952
assets/css/screen.css
Normal file
@ -0,0 +1,952 @@
|
||||
@font-face {
|
||||
font-family:'icons';
|
||||
src:url("../fonts/icons.eot");
|
||||
src:url("../fonts/icons.eot?#iefix") format("embedded-opentype"),
|
||||
url("../fonts/icons.woff") format("woff"),
|
||||
url("../fonts/icons.ttf") format("truetype"),
|
||||
url("../fonts/icons.svg#icons") format("svg");
|
||||
font-weight:normal;
|
||||
font-style:normal
|
||||
}
|
||||
.icon-ghost,
|
||||
.icon-feed {
|
||||
font-family:'icons';
|
||||
font-style:normal;
|
||||
font-weight:normal;
|
||||
font-variant:normal;
|
||||
text-transform:none;
|
||||
line-height:1;
|
||||
-webkit-font-smoothing:antialiased;
|
||||
text-decoration:none
|
||||
}
|
||||
.icon-ghost-text {
|
||||
font-family:"Courier New", Courier, monospace
|
||||
}
|
||||
.icon-ghost:before {
|
||||
content:"\e000"
|
||||
}
|
||||
.icon-feed:before {
|
||||
content:"\e000"
|
||||
}
|
||||
html {
|
||||
height:100%;
|
||||
max-height:100%;
|
||||
font-size:62.5%
|
||||
}
|
||||
body {
|
||||
height:100%;
|
||||
max-height:100%;
|
||||
font-family:"Courier New", Courier, monospace;
|
||||
font-size:2.0rem;
|
||||
line-height:1.6em;
|
||||
color:#B2B6BD;
|
||||
background:#2b303b
|
||||
}
|
||||
::-moz-selection {
|
||||
color:#1c212b;
|
||||
background:#a3be8c;
|
||||
text-shadow:none
|
||||
}
|
||||
::selection {
|
||||
color:#1c212b;
|
||||
background:#a3be8c;
|
||||
text-shadow:none
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
text-rendering:optimizeLegibility;
|
||||
line-height:1;
|
||||
margin-top:20px;
|
||||
letter-spacing:2px;
|
||||
font-weight:normal
|
||||
}
|
||||
h1 a {
|
||||
color:#739a99
|
||||
}
|
||||
h2 a {
|
||||
color:#739a99
|
||||
}
|
||||
h3 a {
|
||||
color:#739a99
|
||||
}
|
||||
h4 a {
|
||||
color:#739a99
|
||||
}
|
||||
h5 a {
|
||||
color:#739a99
|
||||
}
|
||||
h6 a {
|
||||
color:#739a99
|
||||
}
|
||||
h1 {
|
||||
font-size:5rem;
|
||||
line-height:1.2em;
|
||||
text-indent:-3px
|
||||
}
|
||||
h2 {
|
||||
font-size:4rem;
|
||||
line-height:1.2em;
|
||||
text-indent:-2px
|
||||
}
|
||||
h3 {
|
||||
font-size:3.5rem
|
||||
}
|
||||
h4 {
|
||||
font-size:3rem
|
||||
}
|
||||
h5 {
|
||||
font-size:2.5rem
|
||||
}
|
||||
h6 {
|
||||
font-size:2rem
|
||||
}
|
||||
a {
|
||||
color:#bf6165;
|
||||
-webkit-transition:color ease 0.3s;
|
||||
transition:color ease 0.3s
|
||||
}
|
||||
a:hover {
|
||||
color:#a3be8c
|
||||
}
|
||||
p,
|
||||
ul,
|
||||
ol {
|
||||
margin:1.6em 0
|
||||
}
|
||||
ol ol,
|
||||
ul ul,
|
||||
ul ol,
|
||||
ol ul {
|
||||
margin:0.4em 0
|
||||
}
|
||||
hr {
|
||||
display:block;
|
||||
height:1px;
|
||||
border:0;
|
||||
border-top:1px solid #424650;
|
||||
margin:3.2em 0;
|
||||
padding:0
|
||||
}
|
||||
blockquote {
|
||||
-webkit-box-sizing:border-box;
|
||||
box-sizing:border-box;
|
||||
margin:1.6em 0 1.6em -2.2em;
|
||||
padding:0 0 0 1.6em;
|
||||
border-left:#4f586b 0.4em solid
|
||||
}
|
||||
blockquote p {
|
||||
margin:0.8em 0;
|
||||
font-style:italic
|
||||
}
|
||||
blockquote small {
|
||||
display:inline-block;
|
||||
margin:0.8em 0 0.8em 1.5em;
|
||||
font-size:0.9em;
|
||||
color:#ccc
|
||||
}
|
||||
blockquote small:before {
|
||||
content:'\2014 \00A0'
|
||||
}
|
||||
blockquote cite {
|
||||
font-weight:bold
|
||||
}
|
||||
blockquote cite a {
|
||||
font-weight:normal
|
||||
}
|
||||
dl {
|
||||
margin:1.6em 0
|
||||
}
|
||||
dl dt {
|
||||
float:left;
|
||||
width:180px;
|
||||
overflow:hidden;
|
||||
clear:left;
|
||||
text-align:right;
|
||||
text-overflow:ellipsis;
|
||||
white-space:nowrap;
|
||||
font-weight:bold;
|
||||
margin-bottom:1em
|
||||
}
|
||||
dl dd {
|
||||
margin-left:200px;
|
||||
margin-bottom:1em
|
||||
}
|
||||
mark {
|
||||
background-color:#ffc336
|
||||
}
|
||||
code,
|
||||
tt {
|
||||
padding:1px 3px;
|
||||
font-family:"Courier New", Courier, monospace;
|
||||
font-size:0.75em;
|
||||
white-space:pre;
|
||||
border:1px solid #424a5a;
|
||||
background:#4f586b;
|
||||
border-radius:2px
|
||||
}
|
||||
pre {
|
||||
-webkit-box-sizing:border-box;
|
||||
box-sizing:border-box;
|
||||
margin:1.6em 0;
|
||||
border:1px solid #424a5a;
|
||||
width:100%;
|
||||
padding:10px;
|
||||
font-family:"Courier New", Courier, monospace;
|
||||
font-size:0.8em;
|
||||
white-space:pre;
|
||||
overflow:auto;
|
||||
background:#4f586b;
|
||||
border-radius:3px
|
||||
}
|
||||
pre code,
|
||||
tt {
|
||||
font-size:inherit;
|
||||
white-space:-moz-pre-wrap;
|
||||
white-space:pre-wrap;
|
||||
background:transparent;
|
||||
border:none;
|
||||
padding:0
|
||||
}
|
||||
kbd {
|
||||
display:inline-block;
|
||||
margin-bottom:0.4em;
|
||||
padding:1px 8px;
|
||||
border:#ccc 1px solid;
|
||||
color:#666;
|
||||
text-shadow:#fff 0 1px 0;
|
||||
font-size:0.9em;
|
||||
font-weight:bold;
|
||||
background:#f4f4f4;
|
||||
border-radius:4px;
|
||||
-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.2),0 1px 0 0 #fff inset;
|
||||
box-shadow:0 1px 0 rgba(0,0,0,0.2),0 1px 0 0 #fff inset
|
||||
}
|
||||
table {
|
||||
-webkit-box-sizing:border-box;
|
||||
box-sizing:border-box;
|
||||
margin:1.6em 0;
|
||||
width:100%;
|
||||
max-width:100%;
|
||||
background-color:transparent
|
||||
}
|
||||
table th,
|
||||
table td {
|
||||
padding:8px;
|
||||
line-height:20px;
|
||||
text-align:left;
|
||||
vertical-align:top;
|
||||
border-top:1px solid #424a5a
|
||||
}
|
||||
table th {
|
||||
color:#000
|
||||
}
|
||||
table caption+thead tr:first-child th,
|
||||
table caption+thead tr:first-child td,
|
||||
table colgroup+thead tr:first-child th,
|
||||
table colgroup+thead tr:first-child td,
|
||||
table thead:first-child tr:first-child th,
|
||||
table thead:first-child tr:first-child td {
|
||||
border-top:0
|
||||
}
|
||||
table tbody+tbody {
|
||||
border-top:2px solid #efefef
|
||||
}
|
||||
table table table {
|
||||
background-color:#fff
|
||||
}
|
||||
table tbody>tr:nth-child(odd)>td,
|
||||
table tbody>tr:nth-child(odd)>th {
|
||||
background-color:#4f586b
|
||||
}
|
||||
table.plain tbody>tr:nth-child(odd)>td,
|
||||
table.plain tbody>tr:nth-child(odd)>th {
|
||||
background:transparent
|
||||
}
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
background:#4f586b;
|
||||
border:1px solid #424a5a;
|
||||
color:#B2B6BD;
|
||||
outline-color:#bf6165
|
||||
}
|
||||
.site-nav ul {
|
||||
padding:0
|
||||
}
|
||||
.site-nav ul li {
|
||||
display:inline-block;
|
||||
list-style:none
|
||||
}
|
||||
.post-header .site-nav {
|
||||
text-align:center
|
||||
}
|
||||
.hidden {
|
||||
text-indent:-9999px;
|
||||
visibility:hidden;
|
||||
display:none
|
||||
}
|
||||
.inner {
|
||||
position:relative;
|
||||
width:80%;
|
||||
max-width:850px;
|
||||
margin:0 auto
|
||||
}
|
||||
#site-head {
|
||||
position:relative;
|
||||
display:table;
|
||||
width:100%;
|
||||
/* height:60%; */
|
||||
margin-bottom:5rem;
|
||||
/* text-align:center; */
|
||||
color:#a0add5;
|
||||
background:#1c212b no-repeat center center;
|
||||
background-size:cover
|
||||
}
|
||||
#blog-logo {
|
||||
width:100px;
|
||||
border-radius:50%;
|
||||
overflow:hidden;
|
||||
display:block;
|
||||
margin:0 auto;
|
||||
position:relative
|
||||
}
|
||||
#blog-logo:before {
|
||||
width:100px;
|
||||
height:100px;
|
||||
border-radius:50%;
|
||||
overflow:hidden;
|
||||
display:block;
|
||||
margin:0 auto;
|
||||
content:"";
|
||||
position:absolute;
|
||||
top:0;
|
||||
bottom:0;
|
||||
left:0;
|
||||
right:0;
|
||||
background:none;
|
||||
-webkit-transition:background .3s linear;
|
||||
transition:background .3s linear
|
||||
}
|
||||
#blog-logo:hover:before {
|
||||
background:rgba(204,31,39,0.5)
|
||||
}
|
||||
#blog-logo img {
|
||||
display:block;
|
||||
max-height:100px;
|
||||
width:auto;
|
||||
line-height:0;
|
||||
border-radius:50%
|
||||
}
|
||||
#blog-logo-title {
|
||||
margin:10px 0 10px 0;
|
||||
font-size:5rem;
|
||||
letter-spacing:-1px
|
||||
}
|
||||
#blog-logo-description {
|
||||
margin:0;
|
||||
font-size:1.8rem;
|
||||
line-height:1.5em;
|
||||
font-weight:300;
|
||||
letter-spacing:0
|
||||
}
|
||||
#back {
|
||||
color:rgba(0,0,0,0.2);
|
||||
position:fixed;
|
||||
top:8px;
|
||||
left:8px;
|
||||
padding:6px;
|
||||
font-size:16px
|
||||
}
|
||||
.post {
|
||||
position:relative;
|
||||
width:80%;
|
||||
max-width:850px;
|
||||
margin:4rem auto;
|
||||
padding-bottom:4rem;
|
||||
border-bottom:#424650 1px solid;
|
||||
word-break:break-word;
|
||||
-webkit-hyphens:auto;
|
||||
-ms-hyphens:auto;
|
||||
hyphens:auto
|
||||
}
|
||||
.post-title {
|
||||
color:#739a99;
|
||||
margin:0
|
||||
}
|
||||
.post-title a {
|
||||
color:#739a99 !important;
|
||||
text-decoration:none
|
||||
}
|
||||
.post-title a:hover {
|
||||
color:#aec5c4 !important
|
||||
}
|
||||
.post-excerpt p {
|
||||
margin:1.6rem 0 0 0;
|
||||
font-size:0.9em;
|
||||
line-height:1.6em
|
||||
}
|
||||
.post-meta {
|
||||
display:inline-block;
|
||||
margin:0 0 5px 0;
|
||||
font-size:1.5rem;
|
||||
color:#846d8f
|
||||
}
|
||||
.post a {
|
||||
color:#846d8f;
|
||||
text-decoration:none
|
||||
}
|
||||
.post a:hover {
|
||||
text-decoration:underline;
|
||||
color:#9c8aa5
|
||||
}
|
||||
.post-header a {
|
||||
color:#bf6165;
|
||||
-webkit-transition:color ease 0.3s;
|
||||
transition:color ease 0.3s
|
||||
}
|
||||
.post-header a:hover {
|
||||
color:#a3be8c
|
||||
}
|
||||
.user-meta {
|
||||
position:relative;
|
||||
padding:0.3rem 40px 0 100px;
|
||||
min-height:77px
|
||||
}
|
||||
.user-image {
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0
|
||||
}
|
||||
.user-name {
|
||||
display:block;
|
||||
font-weight:bold
|
||||
}
|
||||
.user-bio {
|
||||
display:block;
|
||||
max-width:440px;
|
||||
font-size:1.4rem;
|
||||
line-height:1.5em
|
||||
}
|
||||
.publish-meta {
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:0;
|
||||
padding:4.3rem 0 4rem 0;
|
||||
text-align:right
|
||||
}
|
||||
.publish-heading {
|
||||
display:block;
|
||||
font-weight:bold
|
||||
}
|
||||
.publish-date {
|
||||
display:block;
|
||||
font-size:1.4rem;
|
||||
line-height:1.5em
|
||||
}
|
||||
.post-template .post {
|
||||
margin-top:0;
|
||||
border-bottom:none;
|
||||
padding-bottom:0
|
||||
}
|
||||
.post-template .post:after {
|
||||
display:none
|
||||
}
|
||||
.post-template .post-header {
|
||||
padding:60px 0
|
||||
}
|
||||
.post-content img {
|
||||
display:block;
|
||||
max-width:100%;
|
||||
margin:0 auto
|
||||
}
|
||||
.post-footer {
|
||||
position:relative;
|
||||
margin:4rem 0 0 0;
|
||||
padding:4rem 0 0 0;
|
||||
border-top:#424650 1px solid
|
||||
}
|
||||
.post-footer h4 {
|
||||
font-size:1.8rem;
|
||||
margin:0
|
||||
}
|
||||
.post-footer p {
|
||||
margin:1rem 0;
|
||||
font-size:1.4rem;
|
||||
line-height:1.6em
|
||||
}
|
||||
.post-footer .author {
|
||||
margin-right:180px
|
||||
}
|
||||
.pagination {
|
||||
position:relative;
|
||||
width:80%;
|
||||
max-width:850px;
|
||||
margin:4rem auto;
|
||||
font-family:"Courier New", Courier, monospace;
|
||||
font-size:1.3rem;
|
||||
color:#9EABB3;
|
||||
text-align:center
|
||||
}
|
||||
.pagination a {
|
||||
color:#9EABB3
|
||||
}
|
||||
.pagination a:hover {
|
||||
color:#acb7be;
|
||||
-webkit-transition:all ease 800ms;
|
||||
transition:all ease 800ms
|
||||
}
|
||||
.older-posts,
|
||||
.newer-posts {
|
||||
position:absolute;
|
||||
display:inline-block;
|
||||
padding:0 15px;
|
||||
border:#424650 1px solid;
|
||||
text-decoration:none;
|
||||
border-radius:5px;
|
||||
-webkit-transition:border ease 0.3s;
|
||||
transition:border ease 0.3s;
|
||||
background:#363c4a
|
||||
}
|
||||
.older-posts {
|
||||
right:0
|
||||
}
|
||||
.page-number {
|
||||
display:inline-block;
|
||||
padding:2px 0
|
||||
}
|
||||
.newer-posts {
|
||||
left:0
|
||||
}
|
||||
.older-posts:hover,
|
||||
.newer-posts:hover {
|
||||
border-color:#9EABB3
|
||||
}
|
||||
.site-footer {
|
||||
position:relative;
|
||||
margin:8rem 0 0 0;
|
||||
padding:4rem 0;
|
||||
border-top:#1a1e27 1px solid;
|
||||
font-size:1.3rem;
|
||||
line-height:1.7em;
|
||||
color:#BBC7CC;
|
||||
text-align:center;
|
||||
background:#1c212b
|
||||
}
|
||||
.site-footer a {
|
||||
color:#BBC7CC;
|
||||
text-decoration:underline
|
||||
}
|
||||
.site-footer a:hover {
|
||||
color:#50585D
|
||||
}
|
||||
.poweredby .icon-ghost {
|
||||
color:#bf6165;
|
||||
font-weight:700;
|
||||
text-decoration:none
|
||||
}
|
||||
.poweredby .icon-ghost:hover {
|
||||
text-decoration:none
|
||||
}
|
||||
.poweredby .icon-ghost:before {
|
||||
font-size:1rem;
|
||||
margin-right:0.2em
|
||||
}
|
||||
.subscribe {
|
||||
width:28px;
|
||||
height:28px;
|
||||
position:absolute;
|
||||
top:-14px;
|
||||
left:50%;
|
||||
margin-left:-15px;
|
||||
border:#EBF2F6 1px solid;
|
||||
text-align:center;
|
||||
line-height:2.4rem;
|
||||
border-radius:50px;
|
||||
background:#fff;
|
||||
-webkit-transition:-webkit-box-shadow 0.5s;
|
||||
transition:-webkit-box-shadow 0.5s;
|
||||
transition:box-shadow 0.5s;
|
||||
transition:box-shadow 0.5s, -webkit-box-shadow 0.5s
|
||||
}
|
||||
.subscribe:before {
|
||||
color:#D2DEE3;
|
||||
font-size:10px;
|
||||
position:absolute;
|
||||
top:2px;
|
||||
left:9px;
|
||||
font-weight:bold;
|
||||
-webkit-transition:color 0.5s ease;
|
||||
transition:color 0.5s ease
|
||||
}
|
||||
.subscribe:hover {
|
||||
-webkit-box-shadow:rgba(0,0,0,0.05) 0 0 0 3px;
|
||||
box-shadow:rgba(0,0,0,0.05) 0 0 0 3px;
|
||||
-webkit-transition:-webkit-box-shadow 0.25s;
|
||||
transition:-webkit-box-shadow 0.25s;
|
||||
transition:box-shadow 0.25s;
|
||||
transition:box-shadow 0.25s, -webkit-box-shadow 0.25s
|
||||
}
|
||||
.subscribe:hover .tooltip {
|
||||
opacity:1;
|
||||
top:-33px
|
||||
}
|
||||
.subscribe:hover:before {
|
||||
color:#50585D
|
||||
}
|
||||
.tooltip {
|
||||
opacity:0;
|
||||
display:inline-block;
|
||||
padding:4px 8px 5px 8px;
|
||||
position:absolute;
|
||||
top:-23px;
|
||||
left:-23px;
|
||||
color:rgba(255,255,255,0.9);
|
||||
font-size:1.1rem;
|
||||
font-weight:bold;
|
||||
line-height:1em;
|
||||
text-align:center;
|
||||
background:#50585D;
|
||||
border-radius:20px;
|
||||
-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.1);
|
||||
box-shadow:0 1px 4px rgba(0,0,0,0.1);
|
||||
-webkit-transition:opacity 0.3s ease, top 0.3s ease;
|
||||
transition:opacity 0.3s ease, top 0.3s ease
|
||||
}
|
||||
.tooltip:after {
|
||||
content:"";
|
||||
border-width:5px 5px 0 5px;
|
||||
border-style:solid;
|
||||
border-color:#50585D transparent;
|
||||
display:block;
|
||||
position:absolute;
|
||||
bottom:-4px;
|
||||
left:50%;
|
||||
margin-left:-5px;
|
||||
z-index:220;
|
||||
width:0
|
||||
}
|
||||
@media only screen and (max-width: 900px) {
|
||||
blockquote {
|
||||
margin-left:0
|
||||
}
|
||||
#site-head {
|
||||
-webkit-box-sizing:border-box;
|
||||
box-sizing:border-box;
|
||||
height:auto;
|
||||
min-height:240px;
|
||||
padding:15% 0
|
||||
}
|
||||
.blog-title {
|
||||
font-size:4rem;
|
||||
letter-spacing:-1px
|
||||
}
|
||||
.blog-description {
|
||||
font-size:1.7rem;
|
||||
line-height:1.5em
|
||||
}
|
||||
.post {
|
||||
font-size:0.9em;
|
||||
line-height:1.6em
|
||||
}
|
||||
.post-template .post {
|
||||
padding-bottom:1rem
|
||||
}
|
||||
.post-template .post-header {
|
||||
padding:40px 0
|
||||
}
|
||||
.post-header #blog-logo:before {
|
||||
margin:40px auto
|
||||
}
|
||||
h1 {
|
||||
font-size:4.8rem;
|
||||
text-indent:-2px
|
||||
}
|
||||
h2 {
|
||||
font-size:3.8rem
|
||||
}
|
||||
h3 {
|
||||
font-size:3.3rem
|
||||
}
|
||||
h4 {
|
||||
font-size:2.8rem
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 500px) {
|
||||
#blog-logo img {
|
||||
max-height:80px
|
||||
}
|
||||
#blog-logo {
|
||||
width:80px
|
||||
}
|
||||
#blog-logo:before {
|
||||
width:80px;
|
||||
height:80px
|
||||
}
|
||||
.inner,
|
||||
.pagination {
|
||||
width:auto;
|
||||
margin-left:16px;
|
||||
margin-right:16px
|
||||
}
|
||||
.post {
|
||||
width:auto;
|
||||
margin-left:16px;
|
||||
margin-right:16px;
|
||||
font-size:0.8em;
|
||||
line-height:1.6em
|
||||
}
|
||||
#site-head {
|
||||
padding:10% 0
|
||||
}
|
||||
.blog-title {
|
||||
font-size:3rem
|
||||
}
|
||||
.blog-description {
|
||||
font-size:1.5rem
|
||||
}
|
||||
h1,
|
||||
h2 {
|
||||
font-size:3rem;
|
||||
line-height:1.1em;
|
||||
letter-spacing:-1px
|
||||
}
|
||||
h3 {
|
||||
font-size:2.8rem
|
||||
}
|
||||
h4 {
|
||||
font-size:2.3rem
|
||||
}
|
||||
.post-template .post {
|
||||
padding-bottom:0
|
||||
}
|
||||
.post-template .post-header {
|
||||
padding:30px 0
|
||||
}
|
||||
.post-header #blog-logo:before {
|
||||
margin:30px auto
|
||||
}
|
||||
.post-meta {
|
||||
font-size:1.3rem
|
||||
}
|
||||
.post-footer {
|
||||
padding:4rem 0;
|
||||
text-align:center
|
||||
}
|
||||
.post-footer .author {
|
||||
margin:0 0 2rem 0;
|
||||
padding:0 0 1.6rem 0;
|
||||
border-bottom:#424650 1px dashed
|
||||
}
|
||||
.older-posts,
|
||||
.newer-posts {
|
||||
position:static;
|
||||
margin:10px 0
|
||||
}
|
||||
.page-number {
|
||||
display:block
|
||||
}
|
||||
.site-footer {
|
||||
margin-top:6rem;
|
||||
font-size:1.1rem
|
||||
}
|
||||
}
|
||||
.post-content {
|
||||
display:-webkit-box;
|
||||
display:-ms-flexbox;
|
||||
display:flex;
|
||||
-webkit-box-orient:vertical;
|
||||
-webkit-box-direction:normal;
|
||||
-ms-flex-direction:column;
|
||||
flex-direction:column;
|
||||
-webkit-box-align:center;
|
||||
-ms-flex-align:center;
|
||||
align-items:center;
|
||||
max-width:920px
|
||||
}
|
||||
.post-template .post-content>p:first-child {
|
||||
font-size:1.25em;
|
||||
line-height:1.5em
|
||||
}
|
||||
.post-full-content .kg-image {
|
||||
max-width:100%
|
||||
}
|
||||
.post-full-image+.post-full-content .kg-content *:first-child .kg-image {
|
||||
width:100%
|
||||
}
|
||||
.post-full-content .kg-width-wide .kg-image {
|
||||
max-width:1040px
|
||||
}
|
||||
.post-full-content .kg-width-full .kg-image {
|
||||
max-width:100vw
|
||||
}
|
||||
.post-full-content figure {
|
||||
margin:1.5em 0 3em
|
||||
}
|
||||
.post-full-content figure img {
|
||||
margin:0
|
||||
}
|
||||
.post-full-content figcaption {
|
||||
margin:1.0em 0 0;
|
||||
font-size:80%;
|
||||
line-height:1.6em;
|
||||
text-align:center
|
||||
}
|
||||
.kg-width-full figcaption {
|
||||
padding:0 1.5em
|
||||
}
|
||||
.kg-embed-card {
|
||||
display:-webkit-box;
|
||||
display:-ms-flexbox;
|
||||
display:flex;
|
||||
-webkit-box-orient:vertical;
|
||||
-webkit-box-direction:normal;
|
||||
-ms-flex-direction:column;
|
||||
flex-direction:column;
|
||||
-webkit-box-align:center;
|
||||
-ms-flex-align:center;
|
||||
align-items:center;
|
||||
min-width:100%
|
||||
}
|
||||
.kg-embed-card .fluid-width-video-wrapper {
|
||||
margin:0
|
||||
}
|
||||
@media (max-width: 1040px) {
|
||||
.post-full-content .kg-width-full .kg-image {
|
||||
width:100vw
|
||||
}
|
||||
}
|
||||
.kg-gallery-container {
|
||||
display:-webkit-box;
|
||||
display:-ms-flexbox;
|
||||
display:flex;
|
||||
-webkit-box-orient:vertical;
|
||||
-webkit-box-direction:normal;
|
||||
-ms-flex-direction:column;
|
||||
flex-direction:column;
|
||||
max-width:1040px;
|
||||
width:100vw
|
||||
}
|
||||
.kg-gallery-row {
|
||||
display:-webkit-box;
|
||||
display:-ms-flexbox;
|
||||
display:flex;
|
||||
-webkit-box-orient:horizontal;
|
||||
-webkit-box-direction:normal;
|
||||
-ms-flex-direction:row;
|
||||
flex-direction:row;
|
||||
-webkit-box-pack:center;
|
||||
-ms-flex-pack:center;
|
||||
justify-content:center
|
||||
}
|
||||
.kg-gallery-image img {
|
||||
display:block;
|
||||
margin:0;
|
||||
width:100%;
|
||||
height:100%
|
||||
}
|
||||
.kg-gallery-row:not(:first-of-type) {
|
||||
margin:0.75em 0 0 0
|
||||
}
|
||||
.kg-gallery-image:not(:first-of-type) {
|
||||
margin:0 0 0 0.75em
|
||||
}
|
||||
.kg-gallery-card+.kg-image-card.kg-width-wide,
|
||||
.kg-gallery-card+.kg-gallery-card,
|
||||
.kg-image-card.kg-width-wide+.kg-gallery-card,
|
||||
.kg-image-card.kg-width-wide+.kg-image-card.kg-width-wide {
|
||||
margin:-2.25em 0 3em
|
||||
}
|
||||
.kg-bookmark-card {
|
||||
width:100%;
|
||||
position:relative
|
||||
}
|
||||
.kg-bookmark-container {
|
||||
display:-webkit-box;
|
||||
display:-ms-flexbox;
|
||||
display:flex;
|
||||
-ms-flex-wrap:wrap;
|
||||
flex-wrap:wrap;
|
||||
-webkit-box-orient:horizontal;
|
||||
-webkit-box-direction:reverse;
|
||||
-ms-flex-direction:row-reverse;
|
||||
flex-direction:row-reverse;
|
||||
color:currentColor;
|
||||
font-family:inherit;
|
||||
text-decoration:none;
|
||||
border:1px solid rgba(0,0,0,0.1)
|
||||
}
|
||||
.kg-bookmark-container:hover {
|
||||
text-decoration:none
|
||||
}
|
||||
.kg-bookmark-content {
|
||||
-ms-flex-preferred-size:0;
|
||||
flex-basis:0;
|
||||
-webkit-box-flex:999;
|
||||
-ms-flex-positive:999;
|
||||
flex-grow:999;
|
||||
padding:20px;
|
||||
-webkit-box-ordinal-group:2;
|
||||
-ms-flex-order:1;
|
||||
order:1
|
||||
}
|
||||
.kg-bookmark-title {
|
||||
font-weight:600
|
||||
}
|
||||
.kg-bookmark-metadata,
|
||||
.kg-bookmark-description {
|
||||
margin-top:.5em
|
||||
}
|
||||
.kg-bookmark-metadata {
|
||||
-webkit-box-align:center;
|
||||
-ms-flex-align:center;
|
||||
align-items:center;
|
||||
white-space:nowrap;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis
|
||||
}
|
||||
.kg-bookmark-description {
|
||||
display:-webkit-box;
|
||||
-webkit-box-orient:vertical;
|
||||
-webkit-line-clamp:2;
|
||||
overflow:hidden
|
||||
}
|
||||
.kg-bookmark-icon {
|
||||
display:inline-block;
|
||||
width:1em;
|
||||
height:1em;
|
||||
vertical-align:text-bottom;
|
||||
margin-right:.5em;
|
||||
margin-bottom:.05em
|
||||
}
|
||||
.kg-bookmark-thumbnail {
|
||||
display:-webkit-box;
|
||||
display:-ms-flexbox;
|
||||
display:flex;
|
||||
-ms-flex-preferred-size:24rem;
|
||||
flex-basis:24rem;
|
||||
-webkit-box-flex:1;
|
||||
-ms-flex-positive:1;
|
||||
flex-grow:1
|
||||
}
|
||||
.kg-bookmark-thumbnail img {
|
||||
max-width:100%;
|
||||
height:auto;
|
||||
vertical-align:bottom;
|
||||
-o-object-fit:cover;
|
||||
object-fit:cover
|
||||
}
|
||||
.kg-bookmark-author {
|
||||
white-space:nowrap;
|
||||
text-overflow:ellipsis;
|
||||
overflow:hidden
|
||||
}
|
||||
.kg-bookmark-publisher::before {
|
||||
content:"•";
|
||||
margin:0 .5em
|
||||
}
|
||||
|
41
assets/fonts/icons.dev.svg
Executable file
41
assets/fonts/icons.dev.svg
Executable file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
This is a custom SVG font generated by IcoMoon.
|
||||
<iconset grid="16"></iconset>
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="icons" horiz-adv-x="512" >
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
||||
<glyph unicode="" d="M 421.344-32C 420.944,197.616, 220.592,385.264,0,385.696L0,480 c 270.656,0, 512-230.304, 512-512L 421.344-32
|
||||
z M 343.6-31.968l-90.608,0 c 0.304,56.384-28.336,119.488-73.664,166.736C 134.256,182.4, 54.368,212.416, 0.224,212.128L 0.224,306.4
|
||||
C 169.264,302.752, 340.16,143.088, 343.6-31.968z M 64.256,96.048c 35.312,0, 63.936-28.656, 63.936-64c0-35.328-28.624-63.984-63.936-63.984
|
||||
S 0.32-3.28, 0.32,32.048C 0.32,67.392, 28.944,96.048, 64.256,96.048z" data-tags="feed, rss" />
|
||||
<glyph unicode="" d="M 512,382.791c-18.838-8.354-39.082-14.001-60.33-16.54c 21.686,13, 38.343,33.585, 46.186,58.115
|
||||
c-20.298-12.039-42.778-20.78-66.705-25.49c-19.16,20.415-46.461,33.17-76.673,33.17c-58.011,0-105.044-47.029-105.044-105.039
|
||||
c0-8.233, 0.929-16.25, 2.72-23.939c-87.3,4.382-164.701,46.2-216.509,109.753c-9.042-15.514-14.223-33.558-14.223-52.809
|
||||
c0-36.444, 18.544-68.596, 46.73-87.433c-17.219,0.546-33.416,5.271-47.577,13.139c-0.010-0.438-0.010-0.878-0.010-1.321
|
||||
c0-50.894, 36.209-93.348, 84.261-103c-8.813-2.4-18.094-3.686-27.674-3.686c-6.769,0-13.349,0.66-19.764,1.886
|
||||
c 13.368-41.73, 52.16-72.103, 98.126-72.948c-35.95-28.175-81.243-44.967-130.458-44.967c-8.479,0-16.84,0.497-25.058,1.47
|
||||
c 46.486-29.805, 101.701-47.197, 161.021-47.197c 193.211,0, 298.868,160.062, 298.868,298.872c0,4.554-0.103,9.084-0.305,13.59
|
||||
C 480.11,343.227, 497.918,361.727, 512,382.791z" data-tags="twitter, tweet, social" />
|
||||
<glyph unicode="" d="M 0.403,45.168c-0.122,1.266-0.226,2.535-0.292,3.815C 0.176,47.703, 0.281,46.434, 0.403,45.168zM 117.954,197.426c 46.005-1.369, 76.867,46.349, 68.931,106.599c-7.947,60.24-51.698,108.584-97.704,109.961
|
||||
c-46.013,1.365-76.87-44.741-68.926-105C 28.196,248.752, 71.931,198.799, 117.954,197.426zM 512,352L 512,394.655 C 512,441.595, 473.609,480, 426.671,480L 85.343,480 C 39.205,480, 1.337,442.884, 0.061,397.037
|
||||
c 29.181,25.693, 69.662,47.158, 111.437,47.158c 44.652,0, 178.622,0, 178.622,0l-39.974-33.809l-56.634,0
|
||||
c 37.565-14.402, 57.578-58.062, 57.578-102.861c0-37.624-20.905-69.977-50.444-92.984c-28.822-22.451-34.286-31.854-34.286-50.939
|
||||
c0-16.289, 30.873-44, 47.016-55.394c 47.191-33.269, 62.458-64.156, 62.458-115.728c0-8.214-1.021-16.415-3.033-24.48l 153.871,0
|
||||
C 473.609-32, 512,6.375, 512,53.345L 512,319.999 l-96,0 L 416,224 l-32,0 l0,96 l-95.999,0 l0,32 L 384,352 L 384,448 l 32,0 l0-96 L 512,352 zM 92.943,97.032c 10.807,0, 20.711,0.295, 30.968,0.295c-13.573,13.167-24.313,29.3-24.313,49.19
|
||||
c0,11.804, 3.782,23.168, 9.067,33.26c-5.391-0.385-10.895-0.497-16.563-0.497c-37.178,0-68.753,12.038-92.102,31.927l0-33.621
|
||||
l 0.003-100.865C 26.723,89.408, 58.447,97.032, 92.943,97.032zM 1.71,36.371c-0.556,2.729-0.983,5.503-1.271,8.317C 0.726,41.874, 1.154,39.1, 1.71,36.371zM 227.725,3.577c-7.529,29.403-34.227,43.982-71.444,69.784c-13.536,4.366-28.447,6.937-44.447,7.104
|
||||
c-44.809,0.482-86.554-17.471-110.108-44.186C 9.686-2.574, 44.243-32, 85.343-32l 143.222,0 c 0.908,5.564, 1.348,11.316, 1.348,17.216
|
||||
C 229.913-8.517, 229.146-2.388, 227.725,3.577z" data-tags="google plus, social" />
|
||||
<glyph unicode="" d="M 426.672,480L 85.342,480 C 38.406,480,0,441.593,0,394.656l0-341.313 C0,6.374, 38.406-32, 85.342-32l 341.33,0.001
|
||||
c 46.938,0, 85.328,38.373, 85.328,85.344L 512,394.656 C 512,441.593, 473.609,480, 426.672,480z M 435.296,224L 352,224 l0-224 l-96,0 L 256,224 l-46.263,0 l0,73.282 L 256,297.282
|
||||
l0,47.593 C 256,409.546, 283.896,448, 359.935,448l 87.622,0 l0-79.285 l-71.565,0 c-21.241,0.035-23.876-11.076-23.876-31.756L 352,297.282l 96,0
|
||||
L 435.296,224z" data-tags="facebook, social" />
|
||||
<glyph unicode="" d="M0,480 L0,377.6 L 307.2,377.6 L 307.2,480 L0,480 Z M0,480M0,275.2 L0,172.8 L 512,172.8 L 512,275.2 L0,275.2 Z M0,275.2M0,70.4 L0-32 L 204.8-32 L 204.8,70.4 L0,70.4 Z M0,70.4M 307.2,70.4 L 307.2-32 L 512-32 L 512,70.4 L 307.2,70.4 Z M 307.2,70.4M 409.6,480 L 409.6,377.6 L 512,377.6 L 512,480 L 409.6,480 Z M 409.6,480" data-tags="ghst" />
|
||||
<glyph unicode=" " horiz-adv-x="256" />
|
||||
</font></defs></svg>
|
After Width: | Height: | Size: 4.4 KiB |
BIN
assets/fonts/icons.eot
Executable file
BIN
assets/fonts/icons.eot
Executable file
Binary file not shown.
41
assets/fonts/icons.svg
Executable file
41
assets/fonts/icons.svg
Executable file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
This is a custom SVG font generated by IcoMoon.
|
||||
<iconset grid="16"></iconset>
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="icons" horiz-adv-x="512" >
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
||||
<glyph unicode="" d="M 421.344-32C 420.944,197.616, 220.592,385.264,0,385.696L0,480 c 270.656,0, 512-230.304, 512-512L 421.344-32
|
||||
z M 343.6-31.968l-90.608,0 c 0.304,56.384-28.336,119.488-73.664,166.736C 134.256,182.4, 54.368,212.416, 0.224,212.128L 0.224,306.4
|
||||
C 169.264,302.752, 340.16,143.088, 343.6-31.968z M 64.256,96.048c 35.312,0, 63.936-28.656, 63.936-64c0-35.328-28.624-63.984-63.936-63.984
|
||||
S 0.32-3.28, 0.32,32.048C 0.32,67.392, 28.944,96.048, 64.256,96.048z" />
|
||||
<glyph unicode="" d="M 512,382.791c-18.838-8.354-39.082-14.001-60.33-16.54c 21.686,13, 38.343,33.585, 46.186,58.115
|
||||
c-20.298-12.039-42.778-20.78-66.705-25.49c-19.16,20.415-46.461,33.17-76.673,33.17c-58.011,0-105.044-47.029-105.044-105.039
|
||||
c0-8.233, 0.929-16.25, 2.72-23.939c-87.3,4.382-164.701,46.2-216.509,109.753c-9.042-15.514-14.223-33.558-14.223-52.809
|
||||
c0-36.444, 18.544-68.596, 46.73-87.433c-17.219,0.546-33.416,5.271-47.577,13.139c-0.010-0.438-0.010-0.878-0.010-1.321
|
||||
c0-50.894, 36.209-93.348, 84.261-103c-8.813-2.4-18.094-3.686-27.674-3.686c-6.769,0-13.349,0.66-19.764,1.886
|
||||
c 13.368-41.73, 52.16-72.103, 98.126-72.948c-35.95-28.175-81.243-44.967-130.458-44.967c-8.479,0-16.84,0.497-25.058,1.47
|
||||
c 46.486-29.805, 101.701-47.197, 161.021-47.197c 193.211,0, 298.868,160.062, 298.868,298.872c0,4.554-0.103,9.084-0.305,13.59
|
||||
C 480.11,343.227, 497.918,361.727, 512,382.791z" />
|
||||
<glyph unicode="" d="M 0.403,45.168c-0.122,1.266-0.226,2.535-0.292,3.815C 0.176,47.703, 0.281,46.434, 0.403,45.168zM 117.954,197.426c 46.005-1.369, 76.867,46.349, 68.931,106.599c-7.947,60.24-51.698,108.584-97.704,109.961
|
||||
c-46.013,1.365-76.87-44.741-68.926-105C 28.196,248.752, 71.931,198.799, 117.954,197.426zM 512,352L 512,394.655 C 512,441.595, 473.609,480, 426.671,480L 85.343,480 C 39.205,480, 1.337,442.884, 0.061,397.037
|
||||
c 29.181,25.693, 69.662,47.158, 111.437,47.158c 44.652,0, 178.622,0, 178.622,0l-39.974-33.809l-56.634,0
|
||||
c 37.565-14.402, 57.578-58.062, 57.578-102.861c0-37.624-20.905-69.977-50.444-92.984c-28.822-22.451-34.286-31.854-34.286-50.939
|
||||
c0-16.289, 30.873-44, 47.016-55.394c 47.191-33.269, 62.458-64.156, 62.458-115.728c0-8.214-1.021-16.415-3.033-24.48l 153.871,0
|
||||
C 473.609-32, 512,6.375, 512,53.345L 512,319.999 l-96,0 L 416,224 l-32,0 l0,96 l-95.999,0 l0,32 L 384,352 L 384,448 l 32,0 l0-96 L 512,352 zM 92.943,97.032c 10.807,0, 20.711,0.295, 30.968,0.295c-13.573,13.167-24.313,29.3-24.313,49.19
|
||||
c0,11.804, 3.782,23.168, 9.067,33.26c-5.391-0.385-10.895-0.497-16.563-0.497c-37.178,0-68.753,12.038-92.102,31.927l0-33.621
|
||||
l 0.003-100.865C 26.723,89.408, 58.447,97.032, 92.943,97.032zM 1.71,36.371c-0.556,2.729-0.983,5.503-1.271,8.317C 0.726,41.874, 1.154,39.1, 1.71,36.371zM 227.725,3.577c-7.529,29.403-34.227,43.982-71.444,69.784c-13.536,4.366-28.447,6.937-44.447,7.104
|
||||
c-44.809,0.482-86.554-17.471-110.108-44.186C 9.686-2.574, 44.243-32, 85.343-32l 143.222,0 c 0.908,5.564, 1.348,11.316, 1.348,17.216
|
||||
C 229.913-8.517, 229.146-2.388, 227.725,3.577z" />
|
||||
<glyph unicode="" d="M 426.672,480L 85.342,480 C 38.406,480,0,441.593,0,394.656l0-341.313 C0,6.374, 38.406-32, 85.342-32l 341.33,0.001
|
||||
c 46.938,0, 85.328,38.373, 85.328,85.344L 512,394.656 C 512,441.593, 473.609,480, 426.672,480z M 435.296,224L 352,224 l0-224 l-96,0 L 256,224 l-46.263,0 l0,73.282 L 256,297.282
|
||||
l0,47.593 C 256,409.546, 283.896,448, 359.935,448l 87.622,0 l0-79.285 l-71.565,0 c-21.241,0.035-23.876-11.076-23.876-31.756L 352,297.282l 96,0
|
||||
L 435.296,224z" />
|
||||
<glyph unicode="" d="M0,480 L0,377.6 L 307.2,377.6 L 307.2,480 L0,480 Z M0,480M0,275.2 L0,172.8 L 512,172.8 L 512,275.2 L0,275.2 Z M0,275.2M0,70.4 L0-32 L 204.8-32 L 204.8,70.4 L0,70.4 Z M0,70.4M 307.2,70.4 L 307.2-32 L 512-32 L 512,70.4 L 307.2,70.4 Z M 307.2,70.4M 409.6,480 L 409.6,377.6 L 512,377.6 L 512,480 L 409.6,480 Z M 409.6,480" />
|
||||
<glyph unicode=" " horiz-adv-x="256" />
|
||||
</font></defs></svg>
|
After Width: | Height: | Size: 4.3 KiB |
BIN
assets/fonts/icons.ttf
Executable file
BIN
assets/fonts/icons.ttf
Executable file
Binary file not shown.
BIN
assets/fonts/icons.woff
Executable file
BIN
assets/fonts/icons.woff
Executable file
Binary file not shown.
38
default.hbs
Executable file
38
default.hbs
Executable file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{! Document Settings }}
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
|
||||
{{! Page Meta }}
|
||||
<title>{{meta_title}}</title>
|
||||
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="MobileOptimized" content="320" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
{{! Styles'n'Scripts }}
|
||||
<link rel="stylesheet" type="text/css" href="{{asset "css/normalize.css"}}" />
|
||||
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
|
||||
|
||||
{{! Ghost outputs important style and meta data with this tag }}
|
||||
{{ghost_head}}
|
||||
</head>
|
||||
<body class="{{body_class}}">
|
||||
|
||||
{{! Everything else gets inserted here }}
|
||||
{{{body}}}
|
||||
|
||||
<footer class="site-footer">
|
||||
<div class="inner">
|
||||
<section class="copyright"><a href="/">{{@site.title}}</a> © {{date format="YYYY"}} • <a href="/">Mentions légales</a></section>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
{{! Ghost outputs important scripts and data with this tag }}
|
||||
{{ghost_foot}}
|
||||
|
||||
{{! Scripts }}
|
||||
</body>
|
||||
</html>
|
28
index.hbs
Executable file
28
index.hbs
Executable file
@ -0,0 +1,28 @@
|
||||
{{!< default}}
|
||||
|
||||
{{! The comment above "< default" means - insert everything in this file into
|
||||
the {body} of the default.hbs template, which contains our header/footer. }}
|
||||
|
||||
{{> header}}
|
||||
|
||||
{{! The main content area on the homepage }}
|
||||
<main class="content" role="main">
|
||||
|
||||
{{! Each post will be output using this markup }}
|
||||
{{#foreach posts}}
|
||||
|
||||
<article class="{{post_class}}">
|
||||
<header class="post-header">
|
||||
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY" locale="fr-fr"}}</time> {{#if tags}}dans {{tags}}{{/if}}</span>
|
||||
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
|
||||
</header>
|
||||
<section class="post-excerpt">
|
||||
<p>{{excerpt}}…</p>
|
||||
</section>
|
||||
</article>
|
||||
|
||||
{{/foreach}}
|
||||
|
||||
{{!! After all the posts, we have the previous/next pagination links }}
|
||||
{{pagination}}
|
||||
</main>
|
167
package.json
Normal file
167
package.json
Normal file
@ -0,0 +1,167 @@
|
||||
{
|
||||
"name": "slef-theme",
|
||||
"description": "Special theme for Sans ligne éditorial fixe",
|
||||
"version": "1.0.0",
|
||||
"engines": {
|
||||
"ghost": ">=5.0.0"
|
||||
},
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"dev": "gulp",
|
||||
"zip": "gulp zip",
|
||||
"test": "gscan .",
|
||||
"test:ci": "gscan --fatal --verbose .",
|
||||
"pretest": "gulp build",
|
||||
"preship": "yarn test",
|
||||
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; else echo \"Uncomitted changes found.\" && exit 1; fi",
|
||||
"postship": "git fetch && gulp release"
|
||||
},
|
||||
"author": {
|
||||
"name": "Yann Fery",
|
||||
"email": "blog@fery.me",
|
||||
"url": "https://yann.fery.me/"
|
||||
},
|
||||
"gpm": {
|
||||
"type": "theme",
|
||||
"categories": [
|
||||
"Minimal",
|
||||
]
|
||||
},
|
||||
"keywords": [
|
||||
"ghost",
|
||||
"theme",
|
||||
"ghost-theme"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://gitea.fery.me/king/slef-theme.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tryghost/release-utils": "0.6.12",
|
||||
"autoprefixer": "10.2.5",
|
||||
"beeper": "2.1.0",
|
||||
"cssnano": "4.1.10",
|
||||
"gscan": "4.22.0",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-concat": "2.6.1",
|
||||
"gulp-livereload": "4.0.2",
|
||||
"gulp-postcss": "9.0.0",
|
||||
"gulp-uglify": "3.0.2",
|
||||
"gulp-zip": "5.1.0",
|
||||
"inquirer": "8.0.0",
|
||||
"postcss": "8.2.8",
|
||||
"postcss-color-mod-function": "3.0.3",
|
||||
"postcss-easy-import": "3.0.0",
|
||||
"pump": "3.0.0"
|
||||
},
|
||||
"browserslist": [
|
||||
"defaults"
|
||||
],
|
||||
"config": {
|
||||
"posts_per_page": 25,
|
||||
"image_sizes": {
|
||||
"xxs": {
|
||||
"width": 30
|
||||
},
|
||||
"xs": {
|
||||
"width": 100
|
||||
},
|
||||
"s": {
|
||||
"width": 300
|
||||
},
|
||||
"m": {
|
||||
"width": 600
|
||||
},
|
||||
"l": {
|
||||
"width": 1000
|
||||
},
|
||||
"xl": {
|
||||
"width": 2000
|
||||
}
|
||||
},
|
||||
"card_assets": true,
|
||||
"custom": {
|
||||
"title_font": {
|
||||
"type": "select",
|
||||
"options": [
|
||||
"Modern sans-serif",
|
||||
"Elegant serif"
|
||||
],
|
||||
"default": "Modern sans-serif"
|
||||
},
|
||||
"body_font": {
|
||||
"type": "select",
|
||||
"options": [
|
||||
"Modern sans-serif",
|
||||
"Elegant serif"
|
||||
],
|
||||
"default": "Elegant serif"
|
||||
},
|
||||
"show_publication_cover": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"group": "homepage"
|
||||
},
|
||||
"header_style": {
|
||||
"type": "select",
|
||||
"options": [
|
||||
"Center aligned",
|
||||
"Left aligned",
|
||||
"Hidden"
|
||||
],
|
||||
"default": "Center aligned",
|
||||
"group": "homepage"
|
||||
},
|
||||
"show_logo_in_navigation": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"group": "homepage"
|
||||
},
|
||||
"feed_layout": {
|
||||
"type": "select",
|
||||
"options": [
|
||||
"Classic",
|
||||
"Grid",
|
||||
"List"
|
||||
],
|
||||
"default": "Classic",
|
||||
"group": "homepage"
|
||||
},
|
||||
"color_scheme": {
|
||||
"type": "select",
|
||||
"options": [
|
||||
"Light",
|
||||
"Dark",
|
||||
"Auto"
|
||||
],
|
||||
"default": "Light"
|
||||
},
|
||||
"post_image_style": {
|
||||
"type": "select",
|
||||
"options": [
|
||||
"Wide",
|
||||
"Full",
|
||||
"Small",
|
||||
"Hidden"
|
||||
],
|
||||
"default": "Wide",
|
||||
"group": "post"
|
||||
},
|
||||
"email_signup_text": {
|
||||
"type": "text",
|
||||
"default": "Sign up for more like this.",
|
||||
"group": "post"
|
||||
},
|
||||
"show_recent_posts_footer": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"group": "post"
|
||||
}
|
||||
}
|
||||
},
|
||||
"renovate": {
|
||||
"extends": [
|
||||
"@tryghost:theme"
|
||||
]
|
||||
}
|
||||
}
|
9
partials/header.hbs
Normal file
9
partials/header.hbs
Normal file
@ -0,0 +1,9 @@
|
||||
<header id="site-head" {{#if @site.cover_image}}style="background-image: url({{@site.cover_image}})"{{/if}}>
|
||||
<div class="">
|
||||
<div id="site-head-content" class="inner">
|
||||
|
||||
{{> "site-nav"}}
|
||||
<h1 class="blog-title">{{@site.title}}</h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
10
partials/pagination.hbs
Normal file
10
partials/pagination.hbs
Normal file
@ -0,0 +1,10 @@
|
||||
<nav class="pagination" role="navigation">
|
||||
{{#if prev}}
|
||||
<a class="newer-posts" href="{{page_url prev}}">← Nouveeau Posts</a>
|
||||
{{/if}}
|
||||
<span class="page-number">Page {{page}} sur {{pages}}</span>
|
||||
{{#if next}}
|
||||
<a class="older-posts" href="{{page_url next}}">Ancien Posts →</a>
|
||||
{{/if}}
|
||||
</nav>
|
||||
|
7
partials/site-nav.hbs
Executable file
7
partials/site-nav.hbs
Executable file
@ -0,0 +1,7 @@
|
||||
<nav class="site-nav">
|
||||
<div class="site-nav-left">
|
||||
{{#if @site.navigation}}
|
||||
{{navigation}}
|
||||
{{/if}}
|
||||
</div>
|
||||
</nav>
|
38
post.hbs
Executable file
38
post.hbs
Executable file
@ -0,0 +1,38 @@
|
||||
{{!< default}}
|
||||
|
||||
{{! The comment above "< default" means - insert everything in this file into
|
||||
the {body} of the default.hbs template, which contains our header/footer. }}
|
||||
|
||||
{{> header}}
|
||||
|
||||
<main class="content" role="main">
|
||||
|
||||
<article class="{{post_class}}">
|
||||
|
||||
|
||||
{{! Everything inside the #post tags pulls data from the post }}
|
||||
{{#post}}
|
||||
|
||||
{{! Everything below outputs content of the the post which has been published }}
|
||||
<span class="post-meta"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY' locale="fr-fr"}}</time> {{#if tags}}dans {{tags separator=" | "}}{{/if}}</span>
|
||||
|
||||
<h1 class="post-title">{{{title}}}</h1>
|
||||
|
||||
<section class="post-content">
|
||||
{{content}}
|
||||
</section>
|
||||
|
||||
<footer class="post-footer">
|
||||
|
||||
{{#if primary_author}}
|
||||
<section class="author">
|
||||
<h4>{{primary_author.name}}</h4>
|
||||
</section>
|
||||
{{/if}}
|
||||
</footer>
|
||||
|
||||
{{/post}}
|
||||
|
||||
</article>
|
||||
|
||||
</main>
|
Loading…
x
Reference in New Issue
Block a user