Skip to content

Instantly share code, notes, and snippets.

@soh-i
Created October 31, 2020 03:01
Show Gist options
  • Save soh-i/e03edd6bbf7d734e1da53a98716a3850 to your computer and use it in GitHub Desktop.
Save soh-i/e03edd6bbf7d734e1da53a98716a3850 to your computer and use it in GitHub Desktop.
Quiver css configulations
/*
Edit this CSS file to change styles of the editor.
If you need to revert it back, use the "Reset" button.
*/
/**
* Text Cell
*/
.text-cell {
font-size: 13px;
}
/**
* 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;
}
/*
Edit this CSS file to change styles of the preview.
If you need to revert it back, use the "Reset" button.
*/
/**
* Text Cell
*/
#titlearea .title {
font-size: 15px;
font-weight: bold;
}
#tag-field .tag {
font-size: 13px;
}
.text-cell {
font-size: 13px;
}
/**
* Code Cell
*/
.code-cell {
font-size: 12px;
}
/**
* Markdown Cell
*/
.markdown-cell {
font-size: 13px;
}
/**
* LaTeX Cell
*/
.latex-cell {
font-size: 13px;
}
table td {
padding: 0.5px 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment