|
|
|
.CodeMirror {
|
|
|
|
font-family: "NotoMono Nerd Font" !important;
|
|
|
|
font-size: 1.1rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror .cm-header {
|
|
|
|
color: darkslategray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror .cm-quote {
|
|
|
|
color: #090;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-sizer {
|
|
|
|
/*keeps the text width manageable*/
|
|
|
|
margin-right: auto !important;
|
|
|
|
margin-left: auto !important;
|
|
|
|
max-width: 100ch !important;
|
|
|
|
line-height: 2.3ch !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Default theme */
|
|
|
|
.cm-s-default .cm-attribute {color: #00c !important;}
|
|
|
|
.cm-s-default .cm-bracket {color: #997 !important;}
|
|
|
|
.cm-s-default .cm-builtin {color: #30a !important;}
|
|
|
|
.cm-s-default .cm-comment {color: #a50 !important;}
|
|
|
|
.cm-s-default .cm-hr {color: #999 !important;}
|
|
|
|
.cm-s-default .cm-keyword {color: #708 !important;}
|
|
|
|
.cm-s-default .cm-link {color: #00c !important;}
|
|
|
|
.cm-s-default .cm-meta {color: #555 !important;}
|
|
|
|
.cm-s-default .cm-qualifier {color: #555 !important;}
|
|
|
|
.cm-s-default .cm-string {color: #a11 !important;}
|
|
|
|
.cm-s-default .cm-string-2 {color: #f50 !important;}
|
|
|
|
.cm-s-default .cm-tag {color: #170 !important;}
|
|
|
|
.cm-s-default .cm-variable-2 {color: #05a !important;}
|
|
|
|
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085 !important;}
|
|
|
|
|
|
|
|
#note-editor{
|
|
|
|
color: black !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_emphasis{
|
|
|
|
color: black !important;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_blockquote{
|
|
|
|
color: #797979 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
.ace_string{
|
|
|
|
color: #85b096 !important;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_support{
|
|
|
|
color: #298d56 !important;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_function{
|
|
|
|
margin-left: 5px;
|
|
|
|
color: #85b096 !important;
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_list{
|
|
|
|
color:#313131 !important;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_strong {
|
|
|
|
color: black !important;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* MARKDOWN EDITOR */
|
|
|
|
|
|
|
|
span.cm-rm-checkbox.cm-property + span.cm-rm-checkbox + span.cm-rm-checkbox {
|
|
|
|
/*adds a strike through on completed checkmarks*/
|
|
|
|
text-decoration: line-through;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .cm-s-default .cm-comment { */
|
|
|
|
/* color: #faffc3 !important; */
|
|
|
|
/* background-color: #383a42 !important; */
|
|
|
|
/* font-family: "NotoMono Nerd Font" !important; */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
/* .cm-hr { */
|
|
|
|
/* makes `---` solid */
|
|
|
|
/* border-top: 1px solid #cccccc; */
|
|
|
|
/* display: block; */
|
|
|
|
/* line-height: 0px; */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
/* .cm-s-default *{ */
|
|
|
|
/*makes all text black*/
|
|
|
|
/* color: black !important; */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
.cm-header.cm-rm-header-token{
|
|
|
|
/*makes the markdown #, ##, ###, etc less noticable*/
|
|
|
|
color: #cccccc !important;
|
|
|
|
/* font-size: 90%; */
|
|
|
|
margin-left: -50px;
|
|
|
|
max-width: 50px;
|
|
|
|
width: 50px;
|
|
|
|
/* overflow: hidden; */
|
|
|
|
display: inline-block;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|