diff options
Diffstat (limited to 'style/canvas.css')
-rwxr-xr-x | style/canvas.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/style/canvas.css b/style/canvas.css new file mode 100755 index 0000000..5a147bc --- /dev/null +++ b/style/canvas.css @@ -0,0 +1,37 @@ +body{ + position:absolute; + overflow:hidden; + height:100%; + width:100%; + background-color:#000000; + border-width: 0px; + margin: 0px; + padding: 0px; + cursor:crosshair; + -moz-user-select:none; + -webkit-user-select:none; + -ms-user-select:none; +} + +.inv g,.inv rect,.inv line{ + fill:black; + stroke:white; +} + +.inv circle,.inv text{ + fill:white; + stroke:white; +} + + +#information.inv>rect,.inv .schematic_tracker *,#information.inv>line{ + fill:yellow; + stroke:yellow; +} +#information.inv>circle{ + fill:green; + stroke:green; +} + + + |