Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50640 views
1
/*
2
Copyright 2008-2013
3
Matthias Ehmann,
4
Michael Gerhaeuser,
5
Carsten Miller,
6
Bianca Valentin,
7
Alfred Wassermann,
8
Peter Wilfahrt
9
10
This file is part of JSXGraph.
11
12
JSXGraph is free software dual licensed under the GNU LGPL or MIT License.
13
14
You can redistribute it and/or modify it under the terms of the
15
16
* GNU Lesser General Public License as published by
17
the Free Software Foundation, either version 3 of the License, or
18
(at your option) any later version
19
OR
20
* MIT License: https://github.com/jsxgraph/jsxgraph/blob/master/LICENSE.MIT
21
22
JSXGraph is distributed in the hope that it will be useful,
23
but WITHOUT ANY WARRANTY; without even the implied warranty of
24
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
GNU Lesser General Public License for more details.
26
27
You should have received a copy of the GNU Lesser General Public License and
28
the MIT License along with JSXGraph. If not, see <http://www.gnu.org/licenses/>
29
and <http://opensource.org/licenses/MIT/>.
30
*/
31
32
.jxgbox {
33
/* for IE 7 */
34
position: relative;
35
overflow: hidden;
36
background-color: #ffffff;
37
border-style: solid;
38
border-width: 1px;
39
border-color: #356AA0;
40
border-radius: 10px;
41
-webkit-border-radius: 10px;
42
-ms-touch-action: none;
43
}
44
45
.JXGtext {
46
/* May produce artefacts in IE. Solution: setting a color explicitly. */
47
background-color: transparent;
48
font-family: Arial, Helvetica, Geneva, sans-serif;
49
padding: 0;
50
margin: 0;
51
}
52
53
.JXGinfobox {
54
border-style: none;
55
border-width: 1px;
56
border-color: black;
57
}
58
59
.JXGimage {
60
opacity: 1.0;
61
}
62
63
.JXGimageHighlight {
64
opacity: 0.6;
65
}
66
67
68