-
Notifications
You must be signed in to change notification settings - Fork 0
/
niflheim.css
134 lines (128 loc) · 3.02 KB
/
niflheim.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.cm-s-niflheim.CodeMirror {
background-color: #46494b;
color:#b8c4cf;
padding-left: 8px;
}
.cm-s-niflheim .CodeMirror-sizer{
padding-bottom: 0px;
}
.cm-s-niflheim .CodeMirror-scroll{
margin-right: 0px;
border-color: #202020;
padding-bottom: 0px;
}
.cm-s-niflheim .CodeMirror-vscrollbar{
overflow-y: hidden;
}
/*
.cm-s-niflheim ::-webkit-scrollbar {
width: 14px;
height: 14px;
}
*/
/*
.cm-s-niflheim ::-webkit-scrollbar-track {
background: transparent;
}
.cm-s-niflheim ::-webkit-scrollbar-thumb {
background: rgba(255,255,255,.2);
border-radius: 5px;
}
.cm-s-niflheim ::-webkit-scrollbar-thumb:hover{
background: rgba(255,255,255,.3);
}
.cm-s-niflheim ::-webkit-scrollbar-thumb:active{
background: rgba(255,255,255,.4);
}
*/
.cm-s-niflheim.CodeMirror .inline-widget{
background: #272727;
color: #ccc;
}
.cm-s-niflheim.CodeMirror .inline-widget h1,
.cm-s-niflheim.CodeMirror .inline-widget h2,
.cm-s-niflheim.CodeMirror .inline-widget h3{
color: #ccc;
}
.cm-s-niflheim.CodeMirror .inline-widget p,
.cm-s-niflheim.CodeMirror .inline-widget dt,
.cm-s-niflheim.CodeMirror .inline-widget li,
.cm-s-niflheim.CodeMirror .inline-widget code{
color: #fff;
}
.cm-s-niflheim.CodeMirror .CodeMirror-gutters {
border-style: none;
background: #2d2e30;
}
.cm-s-niflheim.CodeMirror .CodeMirror-linenumbers {
background-color: #3c3f41;
background-image: linear-gradient(to bottom, #393939 33%, #686868 67%);
background-position: right;
background-size: 1px 3px;
background-repeat: repeat-y;
}
.cm-s-niflheim.CodeMirror .CodeMirror-linenumber {
color: #80939b;
padding-left: 5px;
}
.cm-s-niflheim.CodeMirror .CodeMirror-activeline,
.cm-s-niflheim.CodeMirror.CodeMirror-focused .CodeMirror-activeline .CodeMirror-gutter-elt{
background-color: #666;
}
.cm-s-niflheim.CodeMirror pre{
/*padding between line number & content*/
padding: 0 8px;
}
.cm-s-niflheim.CodeMirror .CodeMirror-cursor {
border-left: 2px solid #c7c7c7;
}
.cm-s-niflheim.CodeMirror .CodeMirror-selected {
background: rgba(255,255,255,.2);
}
.cm-s-niflheim.CodeMirror .CodeMirror-matchingbracket {
border-bottom: 1px solid #33ffff;
color: #ccc19b;
}
.cm-s-niflheim.CodeMirror .CodeMirror-unmatchingbracket {
border-bottom: 1px solid #cb3233;
color: #cb3233;
}
.cm-s-niflheim.CodeMirror .cm-comment {
color: #929283;
}
.cm-s-niflheim.CodeMirror .cm-property {
color: #cbaaf5;
}
.cm-s-niflheim.CodeMirror .cm-qualifier {
color: #aaeeab;
}
.cm-s-niflheim.CodeMirror .cm-tag {
color: #7ac1ff;
}
.cm-s-niflheim.CodeMirror .cm-def {
color: #b8c4cf;
}
.cm-s-niflheim.CodeMirror .cm-number {
color: #ccccab;
}
.cm-s-niflheim.CodeMirror .cm-atom {
color: #cc9dc7;
}
.cm-s-niflheim.CodeMirror .cm-keyword{
color: #ff6c6b;
}
.cm-s-niflheim.CodeMirror .cm-string{
color: #789771;
}
.cm-s-niflheim.CodeMirror .cm-string-2{
color: #7ad1dd;
}
.cm-s-niflheim.CodeMirror .cm-variable {
color: #ffcd8e;
}
.cm-s-niflheim.CodeMirror .cm-variable-2 {
color: #aaccff;
}
.cm-s-niflheim.CodeMirror .cm-attribute {
color: #83e1b2;
}