Files
pointvec/sources/links/main.css

34 lines
2.3 KiB
CSS
Raw Normal View History

2017-11-12 13:47:34 -08:00
body { background:#fff; padding: 5px; font-family: 'input_mono_regular'; -webkit-user-select: none; overflow: hidden;}
2017-11-17 10:28:05 +13:00
#app { display: flex; flex-direction: column; align-items: center;}
2016-12-31 08:00:57 -07:00
2017-11-17 11:21:54 +13:00
#wrapper { padding: 25px; padding-bottom: 15px; background: inherit;-webkit-app-region: drag;}
#dotgrid { margin:0px auto; position:relative; overflow: hidden; padding:10px;-webkit-app-region: no-drag; width:310px !important; height:310px !important; }
#cursor { opacity: 1; transition: all 50ms; width:8px; height:8px; position:absolute; z-index:25; border-radius:5px; border:1px solid black;}
2017-11-12 13:47:34 -08:00
#cursor_coord { font-size:10px; z-index: 10000; margin-left:15px; margin-top:-2px;}
2017-11-11 08:46:11 +13:00
#cursor_coord.left { margin-left:-110px; text-align: right; width:100px; }
#cursor_from { width:4px; height:4px; background:white; margin-top:2px; margin-left:2px; position:absolute; z-index:2500; border-radius:10px; left:-100px;border:1px solid black;}
#cursor_to { width:4px; height:4px; background:white; 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; background:white; margin-top:2px; margin-left:2px; position:absolute; z-index:2500; border-radius:10px; left:-100px; border:1px solid black;}
2017-11-14 08:45:31 +13:00
#guide,#widgets { position: absolute;width: 300px;height: 300px; margin-left: -5px; margin-top: -5px;}
#widgets { z-index: 9000; margin-left: 0; margin-top: 0; }
2017-11-10 08:47:06 +13:00
#render { display: none }
2017-11-05 14:52:05 +14:00
2017-11-15 10:11:09 +13:00
.icon { width:25px; height:25px; margin-right:5px; opacity: 1}
2017-11-05 15:48:22 +07:00
.icon:hover { cursor: pointer; opacity: 1 }
2017-11-06 14:10:37 +13:00
svg.vector { z-index: 1000;position: relative; left:10px; top:10px; width:300px !important; height:300px !important; }
2017-11-14 07:52:53 +13:00
#dotgrid #guide { opacity: 0; transition: all 500ms; }
#dotgrid #widgets { opacity: 0; transition: all 150ms; }
2017-11-14 07:52:53 +13:00
#dotgrid:hover #guide { opacity: 1 }
#dotgrid:hover #widgets { opacity: 1 }
2017-11-14 08:45:31 +13:00
2017-11-17 11:21:54 +13:00
#interface { font-size: 11px;line-height: 30px;text-transform: uppercase;-webkit-app-region: no-drag; transition: all 50ms; display: flex; width: 315px; margin-left: 50px; margin-right: 40px; }
2017-11-15 10:11:09 +13:00
#interface svg.inactive { opacity: 0.2 }
2017-11-15 10:57:17 +13:00
#interface svg:hover { opacity: 0.5 }
2017-11-17 11:21:54 +13:00
#interface svg.icon:last-child { margin-right: 0; margin-left: auto; }
2017-11-15 10:57:17 +13:00
#interface.hidden { display: none;opacity: 0 }
#interface.visible { display: block; opacity: 1 }