Subversion Repositories wimsdev

Rev

Rev 4897 | Rev 15332 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /*
  2.     Copyright 2008-2016
  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. /* CSS attributes will (permantely) overwrite attributes set in JSXGraph */
  60. .JXGimage {
  61.     /* opacity: 1.0; */
  62. }
  63.  
  64. .JXGimageHighlight {
  65.     /* opacity: 0.6; */
  66. }
  67.  
  68.