OLD | NEW |
(Empty) | |
| 1 *, *:before, *:after { |
| 2 -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: bor
der-box; |
| 3 } |
| 4 button { |
| 5 position: fixed; |
| 6 padding: 10px; |
| 7 top: 5px; |
| 8 left: 5px; |
| 9 opacity: 0.8; |
| 10 display: none; |
| 11 } |
| 12 g > * { |
| 13 transition-property: stroke, stroke-width, transform, fill, font-size; |
| 14 transition-duration: .2s; |
| 15 } |
| 16 g.active > text { |
| 17 fill: blue; |
| 18 font-size: 100%; |
| 19 } |
| 20 g.active > polygon, g.active > ellipse, g.active > path { |
| 21 stroke: blue; |
| 22 stroke-width: 3px !important; |
| 23 } |
| 24 g.active.edge > polygon { |
| 25 fill: blue; |
| 26 } |
| 27 html, body { margin:10px; padding:0; } |
| 28 svg { height:100%; width:100%; } |
| 29 svg.zoom {height: inherit; width: inherit;} |
OLD | NEW |