pointvec/desktop/sources/links/main.css

47 lines
2.8 KiB
CSS
Raw Normal View History

2018-03-06 19:50:41 -05:00
body { padding: 5px; font-family: 'input_mono_regular'; -webkit-user-select: none; overflow: hidden; padding-left:5px; transition: background 500ms}
2016-12-31 10:00:57 -05:00
2018-05-08 05:05:19 -04:00
#app { display: flex; flex-direction: column; align-items: center; -webkit-app-region: drag; padding-top:30px;}
#dotgrid { margin:0px auto; position:relative; padding:15px;-webkit-app-region: no-drag; width:310px; height:310px; }
#guide { position: absolute;width: 300px;height: 300px; transition: opacity 250ms;}
2017-11-09 14:47:06 -05:00
#render { display: none }
2017-11-04 20:52:05 -04:00
2017-11-21 17:58:07 -05:00
svg.vector { z-index: 1000;position: relative; left:10px; top:10px; width:300px; height:300px; }
2017-11-13 13:52:53 -05:00
2018-05-08 05:05:19 -04:00
/* Interface */
2018-03-06 19:50:41 -05:00
#interface { font-size: 11px;line-height: 30px;text-transform: uppercase;-webkit-app-region: no-drag; transition: all 150ms; width: 315px; position:fixed; bottom:20px; left:calc(50vw - 155px); height:30px;}
2017-11-14 16:11:09 -05:00
#interface svg.inactive { opacity: 0.2 }
2018-03-06 17:02:43 -05:00
#interface svg path.inactive { opacity: 0.2 }
2017-11-14 16:57:17 -05:00
#interface svg:hover { opacity: 0.5 }
2018-02-04 17:45:58 -05:00
#interface svg.icon:last-child { margin-right: 0; }
2018-03-06 17:02:43 -05:00
#interface svg path { fill:none; stroke-linecap: round; stroke-linejoin: round; stroke-width:12px; }
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-03-06 19:50:41 -05:00
#interface #menu { opacity: 1; position: absolute; top:0px; transition: all 250ms; z-index: 900}
#interface #picker { background:red; position: absolute; line-height: 30px; z-index: 0; width:250px; top:5px; opacity: 0; transition: all 250ms;}
#interface.picker #menu { opacity: 0; top:-5px; z-index: 0 }
#interface.picker #picker { opacity: 1; top:0px; z-index: 900 }
2018-05-08 05:05:19 -04:00
#interface .icon { width:30px; height:30px; margin-right:-2px; opacity: 1}
#interface .icon:hover { cursor: pointer; opacity: 1 }
2018-01-08 02:53:54 -05:00
#preview { position: absolute; top:20px; left:20px; stroke-dasharray: 4,4; }
2018-01-11 22:22:50 -05:00
/* Theme Defaults */
:root { --background: "#222"; --f_high: "#fff";--f_med: "#777";--f_low: "#444";--f_inv: "#000";--b_high: "#000";--b_med: "#affec7";--b_low: "#000";--b_inv: "#affec7"; }
body { background:var(--background) !important; }
2018-03-06 19:50:41 -05:00
#picker { background:var(--background) !important; color:var(--f_high) !important; }
2018-01-11 22:22:50 -05:00
.fh { color:var(--f_high) !important; stroke:var(--f_high) !important; }
.fm { color:var(--f_med) !important ; stroke:var(--f_med) !important; }
.fl { color:var(--f_low) !important ; stroke:var(--f_low) !important; }
.f_inv { color:var(--f_inv) !important ; stroke:var(--f_inv) !important; }
.f_inv { color:var(--f_inv) !important ; stroke:var(--f_inv) !important; }
.bh { background:var(--b_high) !important; }
.bm { background:var(--b_med) !important ; }
.bl { background:var(--b_low) !important ; }
.b_inv { background:var(--b_inv) !important ; ; }
.icon { color:var(--f_high) !important; stroke:var(--f_high) !important; }
#dotgrid svg.vector { stroke:var(--f_high) !important; }
#dotgrid #preview { stroke:var(--f_high) !important; }