pointvec/desktop/sources/links/main.css

46 lines
3.0 KiB
CSS
Raw Normal View History

2018-09-11 23:27:01 -04:00
body { padding: 0px; font-family: 'input_mono_regular'; -webkit-user-select: none; overflow: hidden; transition: background-color 500ms; -webkit-app-region: drag; padding: 35px;width:calc(100vw - 60px);height:calc(100vh - 60px)}
2016-12-31 10:00:57 -05:00
2018-05-08 05:15:40 -04:00
/* Core */
2018-08-03 23:55:08 -04:00
#guide { position: absolute;width: 300px;height: 300px; transition: opacity 150ms; -webkit-app-region: no-drag; border-radius: 3px}
2017-11-09 14:47:06 -05:00
#render { display: none }
2018-05-08 05:15:40 -04:00
#vector { z-index: 1000;position: relative;width:300px; height:300px; }
2017-11-13 13:52:53 -05:00
2018-05-08 05:05:19 -04:00
/* Interface */
2018-08-03 23:55:08 -04:00
#interface { font-size: 11px;line-height: 30px;text-transform: uppercase;-webkit-app-region: no-drag; transition: all 150ms; width: 100%; position:fixed; bottom:20px; left:45px; height:30px; max-width:calc(100vw - 90px); overflow: hidden;}
2018-01-13 15:11:57 -05:00
#interface.hidden { bottom:10px;opacity: 0 }
2018-01-08 02:53:54 -05:00
#interface.visible { bottom:20px; opacity: 1 }
2018-08-03 23:55:08 -04:00
#interface #menu { opacity: 1; position: absolute; top:0px; transition: all 250ms; z-index: 900; overflow: hidden; height:30px; width:100%;}
2018-09-11 23:27:01 -04:00
#interface #menu svg.icon { width:30px; height:30px; margin-right:-9px; opacity: 0.6; transition: opacity 250ms; }
2018-08-03 23:55:08 -04:00
#interface #menu svg.icon.inactive { opacity: 0.2 }
#interface #menu svg.icon:hover { cursor: pointer; opacity: 1.0 }
#interface #menu svg.icon:last-child { margin-right: 0; }
#interface #menu svg.icon path { fill:none; stroke-linecap: round; stroke-linejoin: round; stroke-width:12px; }
#interface #menu svg.icon.source { float:right; margin-left:-2px; margin-right:0px; }
2018-09-11 23:27:01 -04:00
#interface #menu svg.icon#option_color { opacity: 1.0; z-index:1001; position: relative; }
2018-09-11 21:20:31 -04:00
#interface #menu svg.icon#option_color:hover { opacity: 0.8 }
2018-08-03 23:55:08 -04:00
2018-09-11 23:27:01 -04:00
#interface #picker { position: absolute; line-height: 20px; z-index: 0; width: 30px; opacity: 0; transition: all 250ms; font-size: 11px; border-radius: 3px; left: 200px; top: 0px; text-transform: uppercase; font-family: 'input_mono_medium';height:20px; padding:5px 0px;left:280px; overflow:hidden;}
#interface #picker:before { content:"#"; position: absolute; left:10px; opacity: 0; transition: opacity 500ms}
#interface #picker input { background:transparent; position: absolute; left: 20px; height: 20px; width: 60px; line-height: 20px; opacity: 0; transition: opacity 500ms; text-transform: uppercase;}
#interface #color_path { transition: all 500ms; }
#interface.picker #menu { z-index: 0 }
#interface.picker #picker { width:30px; padding: 5px 15px; padding-right: 45px; opacity: 1; z-index: 900; width: 50px; left:200px; opacity: 1}
#interface.picker #picker:before { opacity: 1; }
#interface.picker #picker input { opacity: 1 }
#interface.picker #option_thickness { opacity: 0 !important }
#interface.picker #option_mirror { opacity: 0 !important }
#interface.picker #option_fill { opacity: 0 !important }
2018-05-08 05:05:19 -04:00
2018-09-11 21:20:31 -04:00
/* Web Specific */
2018-08-28 17:41:41 -04:00
2018-09-11 23:27:01 -04:00
body.web #interface #menu #option_open { display: none; }
/* Ready */
body #guide { opacity: 0; transition: opacity 500ms; }
body.ready #guide { opacity: 1 }
body #interface { opacity: 0; transition: opacity 250ms, bottom 500ms; bottom:15px; }
body.ready #interface { opacity: 1; bottom:20px; }