mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-02-20 10:01:17 +01:00
47 lines
875 B
CSS
47 lines
875 B
CSS
.cm-s-django {
|
|
font-family: monospace;
|
|
background: #0B2F20;
|
|
color: #F8F8F8;
|
|
}
|
|
.cm-s-django .CodeMirror-gutters {
|
|
box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.5);
|
|
-webkit-box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.5);
|
|
background-color: #0B2F20;
|
|
z-index: 3;
|
|
border: none;
|
|
}
|
|
.cm-s-django div.CodeMirror-cursor {
|
|
border-left: 3px solid #F8F8F8;
|
|
}
|
|
.cm-s-django .CodeMirror-activeline-background {
|
|
background: #0000004A;
|
|
}
|
|
.cm-s-django .CodeMirror-selected {
|
|
background: #245032;
|
|
}
|
|
.cm-s-django .cm-comment {
|
|
font-style: italic;
|
|
color: #245032;
|
|
}
|
|
.cm-s-django .cm-keyword {
|
|
color: #96DD3B;
|
|
}
|
|
.cm-s-django .cm-string {
|
|
color: #91BB9E;
|
|
}
|
|
.cm-s-django .cm-property {
|
|
color: #FFB454;
|
|
}
|
|
.cm-s-django .cm-atom {
|
|
color: #FFB454;
|
|
}
|
|
.cm-s-django .cm-number {
|
|
color: #FFB454;
|
|
}
|
|
.cm-s-django .cm-operator {
|
|
color: #96DD3B;
|
|
}
|
|
.cm-s-django .CodeMirror-linenumber {
|
|
color: italic;
|
|
}
|