Moved the interface into its own class

This commit is contained in:
Devine Lu Linvega
2017-11-15 10:11:09 +13:00
parent 4818e09896
commit ae0e4a8ba9
5 changed files with 77 additions and 61 deletions

View File

@@ -13,9 +13,7 @@ body { background:#fff; padding: 5px; font-family: 'input_mono_regular'; -webkit
#widgets { z-index: 9000 }
#render { display: none }
.icon { width:25px; height:25px; margin-left:-5px; margin-right:0px; opacity: 1}
.icon.right { float:right;}
.icon.inactive { opacity: 0.3 !important }
.icon { width:25px; height:25px; margin-right:5px; opacity: 1}
.icon:hover { cursor: pointer; opacity: 1 }
svg.vector { z-index: 1000;position: relative; left:5px; top:5px; }
@@ -25,4 +23,6 @@ svg.vector { z-index: 1000;position: relative; left:5px; top:5px; }
#dotgrid:hover #guide { opacity: 1 }
#dotgrid:hover #widgets { opacity: 1 }
#interface { max-width: 295px;margin:0px auto;font-size: 11px;line-height: 30px; text-transform: uppercase; margin-top:15px;-webkit-app-region: no-drag;}
#interface { max-width: 295px;margin: 0px auto;font-size: 11px;line-height: 30px;text-transform: uppercase;margin-top: 15px;-webkit-app-region: no-drag;position: fixed;bottom: 25px;left: 45px;}
#interface svg.inactive { opacity: 0.2 }
#interface svg:hover { opacity: 0.5 }