Improved menus

This commit is contained in:
Devine Lu Linvega
2018-01-13 09:00:53 +13:00
parent 731fd58da1
commit bb43273b6f
4 changed files with 33 additions and 36 deletions
+2 -7
View File
@@ -1,4 +1,4 @@
body { padding: 5px; font-family: 'input_mono_regular'; -webkit-user-select: none; overflow: hidden;}
body { padding: 5px; font-family: 'input_mono_regular'; -webkit-user-select: none; overflow: hidden; padding-left:5px;}
#app { display: flex; flex-direction: column; align-items: center;}
#wrapper { padding: 25px; padding-bottom: 15px; -webkit-app-region: drag;}
@@ -10,7 +10,7 @@ body { padding: 5px; font-family: 'input_mono_regular'; -webkit-user-select: non
#cursor_to { width:4px; height:4px; margin-top:2px; margin-left:2px; position:absolute; z-index:2500; border-radius:10px; left:-100px; border:1px solid black;}
#cursor_end { width:4px; height:4px; margin-top:2px; margin-left:2px; position:absolute; z-index:2500; border-radius:10px; left:-100px; border:1px solid black;}
#guide,#widgets { position: absolute;width: 300px;height: 300px; margin-left: -5px; margin-top: -5px;}
#guide,#widgets { position: absolute;width: 300px;height: 300px; margin-left: -5px; margin-top: -5px; transition: opacity 250ms}
#widgets { z-index: 9000; margin-left: 0; margin-top: 0; }
#render { display: none }
@@ -19,11 +19,6 @@ body { padding: 5px; font-family: 'input_mono_regular'; -webkit-user-select: non
svg.vector { z-index: 1000;position: relative; left:10px; top:10px; width:300px; height:300px; }
#dotgrid #guide { opacity: 0; }
#dotgrid #widgets { opacity: 0; }
#dotgrid:hover #guide { opacity: 1 }
#dotgrid:hover #widgets { opacity: 1 }
#interface { font-size: 11px;line-height: 30px;text-transform: uppercase;-webkit-app-region: no-drag; transition: all 50ms; width: 315px; position:fixed; bottom:20px; left:calc(50vw - 150px);}
#interface svg.inactive { opacity: 0.2 }
#interface svg:hover { opacity: 0.5 }