-
Notifications
You must be signed in to change notification settings - Fork 1
/
expedite.css
85 lines (73 loc) · 1.16 KB
/
expedite.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
.expedite
{
font-family: Arial;
font-size: 16pt;
user-select: none;
display: inline;
}
.expedite span
{
padding: 0.0em;
margin: 0.02em;
cursor: pointer;
text-shadow: 0px 0px 1px gray;
text-align: center;
font-size: 100%;
}
.expedite span:hover
{
text-shadow:0px 0px 4px black;
}
.expedite input
{
padding: 0.0em;
margin: 0.02em;
cursor: pointer;
text-shadow: 0px 0px 1px gray;
text-align: center;
border: none;
font-size: 100%;
}
.expedite input:hover
{
text-shadow:0px 0px 4px black;
}
.expedite .expedite-paren
{
color: #c724d8;
}
.expedite .expedite-inner-highlight
{
}
.expedite .expedite-outer-highlight
{
text-shadow:0px 0px 4px black;
}
.expedite .expedite-operator
{
color: #228833;
padding: 0.2em;
}
.expedite .expedite-number
{
color: #1db4d6;
}
.expedite .expedite-variable
{
color: #a10501;
}
.expedite-popup
{
display: none;
position: fixed;
border: 1px solid lightgray;
border-radius: 8px;
background-color: white;
padding: 0.1em;
}
.expedite-popup .expedite-operator
{
display: inline-block;
padding: 0.2em;
margin: 0.1em;
}