-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmerc.css
84 lines (84 loc) · 1.47 KB
/
merc.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
@media (min-width: 896px) {
.main { max-width: 57em; }
}
.adoc{width:100%;}
.cell{
border-left:solid transparent 0.5em;
padding:0.5ex;
}
.inlabel{
font-family:'Inconsolata',monospace;
min-width:3em;
text-align:right;
}
.incode{
font-family:'Inconsolata',monospace;
flex-grow:1;
border:solid lightgrey 1px;
padding:0.2ex;
}
.incode:focus{
background-color:white;
}
.outlabel{
font-family:'Inconsolata',monospace;
min-width:3em;
text-align:right;
}
.outtext{
font-family:'Inconsolata',monospace;
flex-grow:1;
border:0;
background-color:white;
white-space:pre-wrap;
word-wrap:break-word;
min-width:0; /* https://stackoverflow.com/questions/32035406/how-to-limit-pre-tag-width-inside-flex-container */
}
.errmsg{
color:red;
}
.selectedcell{
border-left:solid blue 0.5em;
}
.cellbutton{
color:dimgrey;
min-width: 1.5em;
display: inline-block;
border-radius: 5px;
text-align: center;
}
.cellbutton:hover{
color:black;
background-color:whitesmoke;
cursor:pointer;
}
.popup{
position:absolute;
text-align: left;
background-color:white;
padding:0.5em;
border:1px solid black;
display:none;
}
.typemenuitem:hover{
background-color:blue;
color:white;
}
.topbutton{
padding-left:0.5em;
padding-right:0.5em;
color:dimgrey;
min-width: 1.5em;
display: inline-block;
border-radius: 5px;
text-align: center;
}
.topbutton:hover{
color:black;
background-color:whitesmoke;
cursor:pointer;
}
.topdialog{
padding:1em;background-color:whitesmoke;border:1px solid black;position:fixed;z-index:1;
}
.MathJax{font-size:111%;}