-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
2,226 additions
and
2,141 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
article .container .row img { | ||
max-width: 100% !important; | ||
height: auto; | ||
display: inline-block; | ||
} | ||
article .container .row .video-container { | ||
position: relative; | ||
padding-bottom: 56.25%; | ||
padding-top: 30px; | ||
height: 0; | ||
overflow: hidden; | ||
} | ||
article .container .row .video-container iframe, | ||
article .container .row .video-container object, | ||
article .container .row .video-container embed { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
margin-top: 0; | ||
} | ||
article .container .row blockquote { | ||
font-style: italic; | ||
font-family: font-serif; | ||
font-size: 1.2em; | ||
padding: 0 30px 15px; | ||
text-align: center; | ||
} | ||
article .container .row blockquote footer { | ||
border-top: none; | ||
font-size: 0.8em; | ||
line-height: 1; | ||
margin: 20px 0 0; | ||
padding-top: 0; | ||
} | ||
article .container .row blockquote footer cite:before { | ||
content: '—'; | ||
color: #ccc; | ||
padding: 0 0.5em; | ||
} | ||
article .container .row .pullquote { | ||
float: right; | ||
border: none; | ||
padding: 0; | ||
margin: 1em 0 0.5em 1.5em; | ||
text-align: left; | ||
width: 45%; | ||
font-size: 1.5em; | ||
} | ||
article .container .row .pullquote.left { | ||
float: left; | ||
} | ||
figure.highlight { | ||
background: #eee; | ||
border: 1px solid color-border; | ||
margin-top: 15px; | ||
padding: 7px 15px; | ||
border-radius: 2px; | ||
text-shadow: 0 0 1px #fff; | ||
line-height: 1.6; | ||
overflow: auto; | ||
position: relative; | ||
font-size: 0.9em; | ||
} | ||
figure.highlight figcaption { | ||
color: color-meta; | ||
font-family: font-mono; | ||
margin-bottom: 5px; | ||
text-shadow: 0 0 1px #fff; | ||
} | ||
figure.highlight figcaption a { | ||
position: absolute; | ||
right: 15px; | ||
} | ||
figure.highlight pre { | ||
border: none; | ||
padding: 0; | ||
margin: 0; | ||
background: none; | ||
} | ||
figure.highlight table { | ||
margin-top: 0; | ||
border-spacing: 0; | ||
} | ||
figure.highlight table .gutter { | ||
color: color-meta; | ||
padding-right: 15px; | ||
border-right: 1px solid color-border; | ||
text-align: right; | ||
} | ||
figure.highlight table .code { | ||
padding-left: 15px; | ||
border-left: 1px solid #fff; | ||
color: #666; | ||
} | ||
figure.highlight table .line { | ||
height: 20px; | ||
} | ||
figure.highlight table .line.marked { | ||
background: #d6d6d6; | ||
} | ||
pre .comment, | ||
pre .template_comment, | ||
pre .diff .header, | ||
pre .doctype, | ||
pre .pi, | ||
pre .lisp .string, | ||
pre .javadoc { | ||
color: #93a1a1; | ||
font-style: italic; | ||
} | ||
pre .keyword, | ||
pre .winutils, | ||
pre .method, | ||
pre .addition, | ||
pre .css .tag, | ||
pre .request, | ||
pre .status, | ||
pre .nginx .title { | ||
color: #859900; | ||
} | ||
pre .number, | ||
pre .command, | ||
pre .string, | ||
pre .tag .value, | ||
pre .phpdoc, | ||
pre .tex .formula, | ||
pre .regexp, | ||
pre .hexcolor { | ||
color: #2aa198; | ||
} | ||
pre .title, | ||
pre .localvars, | ||
pre .chunk, | ||
pre .decorator, | ||
pre .built_in, | ||
pre .identifier, | ||
pre .vhdl, | ||
pre .literal, | ||
pre .id { | ||
color: #268bd2; | ||
} | ||
pre .attribute, | ||
pre .variable, | ||
pre .lisp .body, | ||
pre .smalltalk .number, | ||
pre .constant, | ||
pre .class .title, | ||
pre .parent, | ||
pre .haskell .type { | ||
color: #b58900; | ||
} | ||
pre .preprocessor, | ||
pre .preprocessor .keyword, | ||
pre .shebang, | ||
pre .symbol, | ||
pre .symbol .string, | ||
pre .diff .change, | ||
pre .special, | ||
pre .attr_selector, | ||
pre .important, | ||
pre .subst, | ||
pre .cdata, | ||
pre .clojure .title { | ||
color: #cb4b16; | ||
} | ||
pre .deletion { | ||
color: #dc322f; | ||
} |
Oops, something went wrong.