-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengine.css
More file actions
67 lines (57 loc) · 1.14 KB
/
engine.css
File metadata and controls
67 lines (57 loc) · 1.14 KB
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
.bae-root {
user-select: text;
cursor: default;
}
.bae-root[data-font="math"] { font-family: "Times New Roman", serif; }
.bae-root[data-font="arial"] { font-family: Arial, sans-serif; }
.bae-root[data-font="code"] { font-family: Consolas, monospace; }
.fraction {
display: inline-flex;
flex-direction: column;
align-items: center;
margin: 0 4px;
}
.fraction .top,
.fraction .bottom {
font-size: 0.85em;
}
.fraction .bar {
width: 100%;
height: 1px;
background: currentColor;
margin: 2px 0;
}
sup {
font-size: 0.7em;
vertical-align: super;
}
/* Context Menu */
.bae-menu {
position: fixed;
background: #222;
color: #fff;
border-radius: 6px;
padding: 4px 0;
font-size: 14px;
z-index: 9999;
box-shadow: 0 6px 20px rgba(0,0,0,.4);
min-width: 140px;
}
.bae-menu div {
padding: 6px 12px;
cursor: pointer;
}
.bae-menu div:hover {
background: #444;
transition: background 0.1s ease;
}
/* Tooltip */
.bae-tooltip {
position: absolute;
background: #222;
color: #fff;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
z-index: 9999;
}