Files
pointvec/desktop/sources/links/main.css

51 lines
3.1 KiB
CSS
Raw Normal View History

2019-02-07 16:06:55 +12:00
body { padding: 0px; font-family: 'input_mono_regular'; -webkit-user-select: none; overflow: hidden; transition: background-color 500ms; -webkit-app-region: drag; padding: 30px;width:calc(100vw - 60px);height:calc(100vh - 60px)}
2016-12-31 08:00:57 -07:00
2018-05-08 21:15:40 +12:00
/* Core */
2018-08-04 15:55:08 +12:00
#guide { position: absolute;width: 300px;height: 300px; transition: opacity 150ms; -webkit-app-region: no-drag; border-radius: 3px}
2017-11-10 08:47:06 +13:00
#render { display: none }
2018-05-08 21:15:40 +12:00
#vector { z-index: 1000;position: relative;width:300px; height:300px; }
2017-11-14 07:52:53 +13:00
2018-05-08 21:05:19 +12:00
/* Interface */
2019-02-07 16:06:55 +12:00
#interface { font-size: 11px;line-height: 30px;text-transform: uppercase;-webkit-app-region: no-drag; transition: all 150ms; width: 100%; position:fixed; bottom:30px; left:40px; height:30px; max-width:calc(100vw - 85px); overflow: hidden;}
2019-01-12 16:22:38 +12:00
#interface.hidden { bottom:10px !important;opacity: 0 !important }
2019-02-07 16:06:55 +12:00
#interface.visible { bottom:30px !important; opacity: 1 !important}
2018-08-04 15:55:08 +12:00
#interface #menu { opacity: 1; position: absolute; top:0px; transition: all 250ms; z-index: 900; overflow: hidden; height:30px; width:100%;}
2018-09-12 15:27:01 +12:00
#interface #menu svg.icon { width:30px; height:30px; margin-right:-9px; opacity: 0.6; transition: opacity 250ms; }
2018-08-04 15:55:08 +12: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-12 15:27:01 +12:00
#interface #menu svg.icon#option_color { opacity: 1.0; z-index:1001; position: relative; }
2018-09-12 13:20:31 +12:00
#interface #menu svg.icon#option_color:hover { opacity: 0.8 }
2018-08-04 15:55:08 +12:00
2018-09-12 15:27:01 +12: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 21:05:19 +12:00
2018-09-12 13:20:31 +12:00
/* Web Specific */
2018-08-29 09:41:41 +12:00
2018-09-12 15:27:01 +12: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; }
2019-02-07 16:06:55 +12:00
body.ready #interface { opacity: 1; bottom:30px; }
2018-10-02 07:38:14 +12:00
@media (max-width: 560px) {
#interface #menu svg.icon.source { opacity: 0; }
}