-
Notifications
You must be signed in to change notification settings - Fork 1
/
org_mode.css
126 lines (107 loc) · 2.04 KB
/
org_mode.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
body,
html {
font-family: sans-serif;
height: 100%;
margin: 0;
}
.wrapper {
display: flex;
flex-direction: column;
position: relative;
height: calc(100% - 30px);
}
.CodeMirror {
flex: 1 1 auto;
resize: none;
font-size: 14px;
border-radius: 0;
font-family: monospace;
padding: 0;
background-color: transparent;
/* Theme chooser adjustments: */
position: absolute;
top: 0;
right: 0;
bottom: 30px;
left: 0;
line-height: 1.3;
}
/* Fix the alignment/size of the folding arrows. */
.CodeMirror-gutter-elt {
font-size: 160%;
margin-top: -9px;
}
.CodeMirror-gutter-elt,
.CodeMirror-foldgutter-folded,
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded::after,
.CodeMirror-foldgutter-open::after {
width: 20px;
}
.CodeMirror-sizer {
margin-left: 22px;
}
.CodeMirror-gutters {
padding-right: 9px;
}
.CodeMirror-foldgutter-folded,
.CodeMirror-foldgutter-open {
padding: 2px;
}
.CodeMirror-foldgutter-folded::after {
content: "+";
}
.CodeMirror-foldgutter-open::after {
content: "-";
}
/*
.__data_from_root__ {
display: none;
color: var(--sn-stylekit-background-color);
}
*/
.info {
white-space: nowrap;
position: absolute;
bottom: 0;
background: #eeeeee;
padding: 5px;
height: 22px;
left: 0;
right: 0;
z-index: 10;
overflow: hidden;
}
.theme-chooser {
float: right;
padding-top: 1px;
}
.theme-chooser label {
float: left;
width: 40px;
background-color: #efefef;
border-radius: 4px;
border: 1px solid #d0d0d0;
overflow: auto;
}
.theme-chooser label:nth-child(1) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.theme-chooser label:nth-child(2) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.theme-chooser span {
text-align: center;
font-size: 10px;
padding: 4px 0;
display: block;
}
.theme-chooser input {
display: none;
}
.theme-chooser input:checked + span {
background-color: #404040;
color: #f7f7f7;
}