Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgarropy committed Sep 3, 2018
2 parents 7993d42 + 5fdd8aa commit bd5a9d6
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 361 deletions.
2 changes: 0 additions & 2 deletions src/components/PostBody.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import PropTypes from "prop-types"
// styles
import "../scss/PostBody.scss"
import "../scss/PrismFunky.scss"
// import "../scss/PrismOkaidia.scss"
// import "../scss/PrismTomorrow.scss"


const PostBody = ({content}) => {
Expand Down
246 changes: 130 additions & 116 deletions src/scss/PrismFunky.scss
Original file line number Diff line number Diff line change
@@ -1,116 +1,130 @@
/**
* prism.js Funky theme
* Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/
* @author Lea Verou
*/

code[class*="language-"],
pre[class*="language-"] {
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;

-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;

-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
padding: .4em .8em;
margin: .5em 0;
overflow: auto;
background: black;
background-size: 1em 1em;
}

code[class*="language-"] {
background: black;
color: white;
box-shadow: -.3em 0 0 .3em black, .3em 0 0 .3em black;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .2em;
border-radius: .3em;
box-shadow: none;
white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #aaa;
}

.token.punctuation {
color: #999;
}

.namespace {
opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
color: #0cf;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
color: yellow;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.toke.variable,
.token.inserted {
color: yellowgreen;
}

.token.atrule,
.token.attr-value,
.token.keyword {
color: deeppink;
}

.token.regex,
.token.important {
color: orange;
}

.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}

.token.entity {
cursor: help;
}

.token.deleted {
color: red;
}
code[class*="language-"],
pre[class*="language-"] {
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
tab-size: 4;
hyphens: none;
}

// code blocks
pre[class*="language-"] {
padding: .4em .8em;
margin: .5em 0;
overflow: auto;
background: black;
background-size: 1em 1em;
border-radius: .3em;
}

code[class*="language-"] {
background: black;
color: white;
}

// inline code
:not(pre) > code[class*="language-"] {
padding: .1em .3em;
border-radius: .3em;
box-shadow: none;
white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #aaa;
}

.token.punctuation {
color: #999;
}

.namespace {
opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
color: #0cf;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
color: yellow;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.toke.variable,
.token.inserted {
color: yellowgreen;
}

.token.atrule,
.token.attr-value,
.token.keyword {
color: deeppink;
}

.token.regex,
.token.important {
color: orange;
}

.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}

.token.entity {
cursor: help;
}

.token.deleted {
color: red;
}

.gatsby-highlight-code-line {
background-color: #222;
display: block;
margin-right: -1em;
margin-left: -1em;
padding-right: 1em;
padding-left: 0.75em;
border-left: 0.25em solid #0cf;
}

.gatsby-highlight {
background-color: black;
border-radius: 0.3em;
margin: 0.5em 0;
padding: 1em;
overflow: auto;
}

.gatsby-highlight pre[class*="language-"] {
background-color: transparent;
margin: 0;
padding: 0;
overflow: initial;
float: left;
min-width: 100%;
}
122 changes: 0 additions & 122 deletions src/scss/PrismOkaidia.scss

This file was deleted.

Loading

0 comments on commit bd5a9d6

Please sign in to comment.