style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* For scatter plot */
  2. text {
  3. font-family: sans-serif;
  4. fill: #000000;
  5. }
  6. table {
  7. visibility: hidden;
  8. position: absolute;
  9. top: 30px;
  10. left: 500px;
  11. font-family: sans-serif;
  12. font-size: 0.7em;
  13. }
  14. tr:nth-child(even) {
  15. background-color: #d9d9d9;
  16. }
  17. .brushed {
  18. fill: #ff3399;
  19. stroke: #8e1b54;
  20. opacity: 1.0;
  21. }
  22. .brush .extent {
  23. stroke: #000;
  24. stroke-width: 1.5px;
  25. fill: #000;
  26. fill-opacity: 0.3;
  27. }
  28. .point.selected {
  29. fill: red;
  30. stroke: darkred;
  31. stroke-width: 1;
  32. }
  33. /* for node-link diagram */
  34. .node circle {
  35. fill: #fff;
  36. stroke: steelblue;
  37. stroke-width: 3px;
  38. }
  39. .node text {
  40. font: 12px sans-serif;
  41. }
  42. .link {
  43. fill: none;
  44. stroke: #ccc;
  45. stroke-width: 2px;
  46. }
  47. /*TREEMAP*/
  48. body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
  49. text {
  50. pointer-events: stroke;
  51. }
  52. .grandparent text {
  53. font-weight: bold;
  54. }
  55. /*rect {
  56. fill: none;
  57. stroke: #fff;
  58. padding: 6px;
  59. }*/
  60. rect.parent,
  61. .grandparent rect {
  62. stroke-width: 6px;
  63. }
  64. .grandparent rect {
  65. fill: orange;
  66. }
  67. .grandparent:hover rect {
  68. fill: #ee9700;
  69. }
  70. .children rect.parent,
  71. .grandparent rect {
  72. cursor: pointer;
  73. }
  74. .children rect.parent {
  75. fill: #bbb;
  76. fill-opacity: 0.5;
  77. }
  78. .children:hover rect {
  79. fill: #ee9700;
  80. fill-opacity: 0.5;
  81. }
  82. /* parallel coordinates style */
  83. .foreground path {
  84. fill: none !important;
  85. stroke: steelblue;
  86. }
  87. .foreground path.fade {
  88. stroke: #000;
  89. stroke-opacity: .05;
  90. }
  91. /* Brush on axis */
  92. .brush .extent .selection {
  93. fill-opacity: .3;
  94. stroke: #fff;
  95. shape-rendering: crispEdges;
  96. }
  97. .axis line,
  98. .axis path {
  99. fill: none;
  100. stroke: #000;
  101. stroke-width: 2px;
  102. shape-rendering: crispEdges;
  103. }
  104. .axis text {
  105. text-shadow: 0 1px 0 #fff;
  106. cursor: move;
  107. font-size: 13pt;
  108. fill: black;
  109. }
  110. .background path {
  111. fill: none;
  112. stroke: #ddd;
  113. shape-rendering: crispEdges;
  114. }
  115. .eixoSexo line{
  116. fill: black;
  117. stroke-width: 3px;
  118. }
  119. .eixoSexo path{
  120. fill: none;
  121. stroke: url(#svgGradient);
  122. stroke-width: 3px;
  123. shape-rendering: crispEdges;
  124. }
  125. .eixoSexo text{
  126. text-shadow: 0 1px 0 #fff;
  127. cursor: move;
  128. font-size: 13pt;
  129. fill: black;
  130. }