Skip to content

Instantly share code, notes, and snippets.

@taxigy
Created July 29, 2017 11:46
Show Gist options
  • Save taxigy/fb0ba51b925cd86a418a00cf038398cf to your computer and use it in GitHub Desktop.
Save taxigy/fb0ba51b925cd86a418a00cf038398cf to your computer and use it in GitHub Desktop.
Quiver styles
/**
* Text Cell
*/
.text-cell {
font-family: Alegreya, Georgia, serif;
font-size: 17px;
line-height: 1.75;
max-width: 700px;
margin: 0 auto;
}
/**
* Code Cell
*/
.code-cell .editor {
font-size: 12px;
}
/**
* LaTeX Cell
*/
.latex-cell .editor {
font-size: 12px;
}
/**
* Markdown Cell
*/
.markdown-cell .ace_editor {
background-color: #FFFFFF;
color: #333;
font-size: 12px;
line-height: 1.5;
}
/* # Heading 1 */
.markdown-cell .ace_heading.ace_1, .markdown-cell .ace_heading.ace_1 ~ .ace_heading {
color: #009BC7;
}
/* ## Heading 2 */
.markdown-cell .ace_heading.ace_2, .markdown-cell .ace_heading.ace_2 ~ .ace_heading {
color: #009BC7;
}
/* ### Heading 3 */
.markdown-cell .ace_heading.ace_3, .markdown-cell .ace_heading.ace_3 ~ .ace_heading {
color: #009BC7;
}
/* #### Heading 4 */
.markdown-cell .ace_heading.ace_4, .markdown-cell .ace_heading.ace_4 ~ .ace_heading {
color: #009BC7;
}
/* ##### Heading 5 */
.markdown-cell .ace_heading.ace_5, .markdown-cell .ace_heading.ace_5 ~ .ace_heading {
color: #009BC7;
}
/* ###### Heading 6 */
.markdown-cell .ace_heading.ace_6, .markdown-cell .ace_heading.ace_6 ~ .ace_heading {
color: #009BC7;
}
/* `code` */
.markdown-cell .ace_support.ace_function {
color: #888;
}
/* ordered list, unordered list */
.markdown-cell .ace_list {
color: #6C6C6C;
}
/* blockquote */
.markdown-cell .ace_blockquote {
color: #A1B1C1;
}
/* _emphasis_ */
.markdown-cell .ace_emphasis {
color: #6C6C6C;
font-style: italic;
}
/* **strong** */
.markdown-cell .ace_strong {
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment