commit the build
0
docs/.nojekyll
Normal file
1
docs/_app/assets/pages/index.svelte-83d9cfc0.css
Normal file
1
docs/_app/assets/pages/index.svelte-91a0f1d4.css
Normal file
1
docs/_app/assets/pages/index.svelte-a35780e8.css
Normal file
1
docs/_app/assets/pages/index.svelte-d0754e48.css
Normal file
1
docs/_app/assets/start-a8cd1609.css
Normal file
@ -0,0 +1 @@
|
||||
#svelte-announcer.svelte-1j55zn5{position:absolute;left:0;top:0;clip:rect(0 0 0 0);clip-path:inset(50%);overflow:hidden;white-space:nowrap;width:1px;height:1px}
|
11705
docs/_app/bulma/bulma-rtl.css
Normal file
1
docs/_app/bulma/bulma-rtl.css.map
Normal file
1
docs/_app/bulma/bulma-rtl.min.css
vendored
Normal file
11705
docs/_app/bulma/bulma.css
vendored
Normal file
1
docs/_app/bulma/bulma.css.map
Normal file
1
docs/_app/bulma/bulma.min.css
vendored
Normal file
1
docs/_app/chunks/paths-45dac81d.js
Normal file
@ -0,0 +1 @@
|
||||
let s="",a="/.";function e(e){({base:s,assets:a}=e)}export{s as b,e as s};
|
15
docs/_app/chunks/vendor-6371dcb3.js
Normal file
10
docs/_app/chunks/vendor-7686ecbd.js
Normal file
17
docs/_app/chunks/vendor-7705c5be.js
Normal file
17
docs/_app/chunks/vendor-86605c92.js
Normal file
17
docs/_app/chunks/vendor-ac23457f.js
Normal file
17
docs/_app/chunks/vendor-baa39f88.js
Normal file
17
docs/_app/chunks/vendor-d19db435.js
Normal file
15
docs/_app/chunks/vendor-d574e9c5.js
Normal file
15
docs/_app/chunks/vendor-d7482fce.js
Normal file
10
docs/_app/chunks/vendor-dc8940a4.js
Normal file
236
docs/_app/css/buttons.css
Normal file
@ -0,0 +1,236 @@
|
||||
/* from https://codepen.io/ben_jammin/pen/syaCq */
|
||||
|
||||
.button::-moz-focus-inner{
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.button{
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
padding: 6px 20px;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
border: 1px solid #bbb;
|
||||
overflow: visible;
|
||||
font: bold 13px arial, helvetica, sans-serif;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
color: #555;
|
||||
|
||||
background-color: #ddd;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
|
||||
background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
||||
background-image: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
||||
background-image: -ms-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
||||
background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
||||
background-image: linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
|
||||
|
||||
-webkit-transition: background-color .2s ease-out;
|
||||
-moz-transition: background-color .2s ease-out;
|
||||
-ms-transition: background-color .2s ease-out;
|
||||
-o-transition: background-color .2s ease-out;
|
||||
transition: background-color .2s ease-out;
|
||||
background-clip: padding-box; /* Fix bleeding */
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
|
||||
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
|
||||
box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
|
||||
text-shadow: 0 1px 0 rgba(255,255,255, .9);
|
||||
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.button:hover{
|
||||
background-color: #eee;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.button:active{
|
||||
background: #e9e9e9;
|
||||
position: relative;
|
||||
top: 1px;
|
||||
text-shadow: none;
|
||||
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
|
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
|
||||
}
|
||||
|
||||
.button[disabled], .button[disabled]:hover, .button[disabled]:active{
|
||||
border-color: #eaeaea;
|
||||
background: #fafafa;
|
||||
cursor: default;
|
||||
position: static;
|
||||
color: #999;
|
||||
/* Usually, !important should be avoided but here it's really needed :) */
|
||||
-moz-box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
/* Smaller buttons styles */
|
||||
|
||||
.button.small{
|
||||
padding: 4px 12px;
|
||||
}
|
||||
|
||||
/* Larger buttons styles */
|
||||
|
||||
.button.large{
|
||||
padding: 12px 30px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.button.large:active{
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
/* Colored buttons styles */
|
||||
|
||||
.button.green, .button.red, .button.blue {
|
||||
color: #fff;
|
||||
text-shadow: 0 1px 0 rgba(0,0,0,.2);
|
||||
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0)));
|
||||
background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
||||
background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
||||
background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
||||
background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
||||
background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
.button.green{
|
||||
background-color: #57a957;
|
||||
border-color: #57a957;
|
||||
}
|
||||
|
||||
.button.green:hover{
|
||||
background-color: #62c462;
|
||||
}
|
||||
|
||||
.button.green:active{
|
||||
background: #57a957;
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
.button.red{
|
||||
background-color: #ca3535;
|
||||
border-color: #c43c35;
|
||||
}
|
||||
|
||||
.button.red:hover{
|
||||
background-color: #ee5f5b;
|
||||
}
|
||||
|
||||
.button.red:active{
|
||||
background: #c43c35;
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
.button.blue{
|
||||
background-color: #269CE9;
|
||||
border-color: #269CE9;
|
||||
}
|
||||
|
||||
.button.blue:hover{
|
||||
background-color: #70B9E8;
|
||||
}
|
||||
|
||||
.button.blue:active{
|
||||
background: #269CE9;
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
.green[disabled], .green[disabled]:hover, .green[disabled]:active{
|
||||
border-color: #57A957;
|
||||
background: #57A957;
|
||||
color: #D2FFD2;
|
||||
}
|
||||
|
||||
.red[disabled], .red[disabled]:hover, .red[disabled]:active{
|
||||
border-color: #C43C35;
|
||||
background: #C43C35;
|
||||
color: #FFD3D3;
|
||||
}
|
||||
|
||||
.blue[disabled], .blue[disabled]:hover, .blue[disabled]:active{
|
||||
border-color: #269CE9;
|
||||
background: #269CE9;
|
||||
color: #93D5FF;
|
||||
}
|
||||
|
||||
/* Group buttons */
|
||||
|
||||
.button-group,
|
||||
.button-group li{
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
}
|
||||
|
||||
.button-group{
|
||||
font-size: 0; /* Inline block elements gap - fix */
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: rgba(0, 0, 0, .1);
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .1);
|
||||
padding: 7px;
|
||||
-moz-border-radius: 7px;
|
||||
-webkit-border-radius: 7px;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
.button-group li{
|
||||
margin-right: -1px; /* Overlap each right button border */
|
||||
}
|
||||
|
||||
.button-group .button{
|
||||
font-size: 13px; /* Set the font size, different from inherited 0 */
|
||||
-moz-border-radius: 0;
|
||||
-webkit-border-radius: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.button-group .button:active{
|
||||
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
}
|
||||
|
||||
.button-group li:first-child .button{
|
||||
-moz-border-radius: 3px 0 0 3px;
|
||||
-webkit-border-radius: 3px 0 0 3px;
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
|
||||
.button-group li:first-child .button:active{
|
||||
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
}
|
||||
|
||||
.button-group li:last-child .button{
|
||||
-moz-border-radius: 0 3px 3px 0;
|
||||
-webkit-border-radius: 0 3px 3px 0;
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
.button-group li:last-child .button:active{
|
||||
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
|
||||
}
|
1
docs/_app/error.svelte-0161cb75.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as l,h as d,k as f,l as i,n as m,G as h}from"./chunks/vendor-6371dcb3.js";function k(s){let r,a,f=s[1].stack+"";return{c(){r=t("pre"),a=e(f)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,f),t.forEach(u)},m(s,t){p(s,r,t),l(r,a)},p(s,r){2&r&&f!==(f=s[1].stack+"")&&d(a,f)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",b=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=f(),E=t("p"),g=e($),x=f(),b&&b.c(),P=i()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),b&&b.l(t),P=i()},m(s,t){p(s,r,t),l(r,a),p(s,v,t),p(s,E,t),l(E,g),p(s,x,t),b&&b.m(s,t),p(s,P,t)},p(s,[r]){1&r&&d(a,s[0]),2&r&&$!==($=s[1].message+"")&&d(g,$),s[1].stack?b?b.p(s,r):(b=k(s),b.c(),b.m(P.parentNode,P)):b&&(b.d(1),b=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),b&&b.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-26494c7d.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as f,h as l,k as d,l as i,n as m,G as h}from"./chunks/vendor-d7482fce.js";function k(s){let r,a,d=s[1].stack+"";return{c(){r=t("pre"),a=e(d)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,d),t.forEach(u)},m(s,t){p(s,r,t),f(r,a)},p(s,r){2&r&&d!==(d=s[1].stack+"")&&l(a,d)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",j=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=d(),E=t("p"),g=e($),x=d(),j&&j.c(),P=i()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),j&&j.l(t),P=i()},m(s,t){p(s,r,t),f(r,a),p(s,v,t),p(s,E,t),f(E,g),p(s,x,t),j&&j.m(s,t),p(s,P,t)},p(s,[r]){1&r&&l(a,s[0]),2&r&&$!==($=s[1].message+"")&&l(g,$),s[1].stack?j?j.p(s,r):(j=k(s),j.c(),j.m(P.parentNode,P)):j&&(j.d(1),j=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),j&&j.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-4586ad39.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as l,h as d,k as f,l as i,n as m,G as h}from"./chunks/vendor-d574e9c5.js";function k(s){let r,a,f=s[1].stack+"";return{c(){r=t("pre"),a=e(f)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,f),t.forEach(u)},m(s,t){p(s,r,t),l(r,a)},p(s,r){2&r&&f!==(f=s[1].stack+"")&&d(a,f)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",j=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=f(),E=t("p"),g=e($),x=f(),j&&j.c(),P=i()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),j&&j.l(t),P=i()},m(s,t){p(s,r,t),l(r,a),p(s,v,t),p(s,E,t),l(E,g),p(s,x,t),j&&j.m(s,t),p(s,P,t)},p(s,[r]){1&r&&d(a,s[0]),2&r&&$!==($=s[1].message+"")&&d(g,$),s[1].stack?j?j.p(s,r):(j=k(s),j.c(),j.m(P.parentNode,P)):j&&(j.d(1),j=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),j&&j.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-5bee549d.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as l,h as f,k as i,l as d,n as m,G as h}from"./chunks/vendor-86605c92.js";function k(s){let r,a,i=s[1].stack+"";return{c(){r=t("pre"),a=e(i)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,i),t.forEach(u)},m(s,t){p(s,r,t),l(r,a)},p(s,r){2&r&&i!==(i=s[1].stack+"")&&f(a,i)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",j=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=i(),E=t("p"),g=e($),x=i(),j&&j.c(),P=d()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),j&&j.l(t),P=d()},m(s,t){p(s,r,t),l(r,a),p(s,v,t),p(s,E,t),l(E,g),p(s,x,t),j&&j.m(s,t),p(s,P,t)},p(s,[r]){1&r&&f(a,s[0]),2&r&&$!==($=s[1].message+"")&&f(g,$),s[1].stack?j?j.p(s,r):(j=k(s),j.c(),j.m(P.parentNode,P)):j&&(j.d(1),j=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),j&&j.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-65f51fa3.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as f,h as l,k as i,l as d,n as m,G as h}from"./chunks/vendor-ac23457f.js";function k(s){let r,a,i=s[1].stack+"";return{c(){r=t("pre"),a=e(i)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,i),t.forEach(u)},m(s,t){p(s,r,t),f(r,a)},p(s,r){2&r&&i!==(i=s[1].stack+"")&&l(a,i)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",j=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=i(),E=t("p"),g=e($),x=i(),j&&j.c(),P=d()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),j&&j.l(t),P=d()},m(s,t){p(s,r,t),f(r,a),p(s,v,t),p(s,E,t),f(E,g),p(s,x,t),j&&j.m(s,t),p(s,P,t)},p(s,[r]){1&r&&l(a,s[0]),2&r&&$!==($=s[1].message+"")&&l(g,$),s[1].stack?j?j.p(s,r):(j=k(s),j.c(),j.m(P.parentNode,P)):j&&(j.d(1),j=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),j&&j.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-68c78794.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as l,h as d,k as f,l as i,n as m,G as h}from"./chunks/vendor-7686ecbd.js";function k(s){let r,a,f=s[1].stack+"";return{c(){r=t("pre"),a=e(f)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,f),t.forEach(u)},m(s,t){p(s,r,t),l(r,a)},p(s,r){2&r&&f!==(f=s[1].stack+"")&&d(a,f)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",b=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=f(),E=t("p"),g=e($),x=f(),b&&b.c(),P=i()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),b&&b.l(t),P=i()},m(s,t){p(s,r,t),l(r,a),p(s,v,t),p(s,E,t),l(E,g),p(s,x,t),b&&b.m(s,t),p(s,P,t)},p(s,[r]){1&r&&d(a,s[0]),2&r&&$!==($=s[1].message+"")&&d(g,$),s[1].stack?b?b.p(s,r):(b=k(s),b.c(),b.m(P.parentNode,P)):b&&(b.d(1),b=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),b&&b.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-9bd54866.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as l,h as d,k as f,l as i,n as m,G as h}from"./chunks/vendor-dc8940a4.js";function k(s){let r,a,f=s[1].stack+"";return{c(){r=t("pre"),a=e(f)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,f),t.forEach(u)},m(s,t){p(s,r,t),l(r,a)},p(s,r){2&r&&f!==(f=s[1].stack+"")&&d(a,f)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",j=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=f(),E=t("p"),g=e($),x=f(),j&&j.c(),P=i()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),j&&j.l(t),P=i()},m(s,t){p(s,r,t),l(r,a),p(s,v,t),p(s,E,t),l(E,g),p(s,x,t),j&&j.m(s,t),p(s,P,t)},p(s,[r]){1&r&&d(a,s[0]),2&r&&$!==($=s[1].message+"")&&d(g,$),s[1].stack?j?j.p(s,r):(j=k(s),j.c(),j.m(P.parentNode,P)):j&&(j.d(1),j=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),j&&j.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-a831b90f.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as n,g as c,d as u,f as p,F as d,h as l,k as f,l as i,n as m,G as h}from"./chunks/vendor-d19db435.js";function k(s){let r,a,f=s[1].stack+"";return{c(){r=t("pre"),a=e(f)},l(s){r=o(s,"PRE",{});var t=n(r);a=c(t,f),t.forEach(u)},m(s,t){p(s,r,t),d(r,a)},p(s,r){2&r&&f!==(f=s[1].stack+"")&&l(a,f)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",b=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=f(),E=t("p"),g=e($),x=f(),b&&b.c(),P=i()},l(t){r=o(t,"H1",{});var e=n(r);a=c(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=n(E);g=c(p,$),p.forEach(u),x=m(t),b&&b.l(t),P=i()},m(s,t){p(s,r,t),d(r,a),p(s,v,t),p(s,E,t),d(E,g),p(s,x,t),b&&b.m(s,t),p(s,P,t)},p(s,[r]){1&r&&l(a,s[0]),2&r&&$!==($=s[1].message+"")&&l(g,$),s[1].stack?b?b.p(s,r):(b=k(s),b.c(),b.m(P.parentNode,P)):b&&(b.d(1),b=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),b&&b.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-b0820931.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as f,h as l,k as i,l as d,n as m,G as h}from"./chunks/vendor-ac23457f.js";function k(s){let r,a,i=s[1].stack+"";return{c(){r=t("pre"),a=e(i)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,i),t.forEach(u)},m(s,t){p(s,r,t),f(r,a)},p(s,r){2&r&&i!==(i=s[1].stack+"")&&l(a,i)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",j=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=i(),E=t("p"),g=e($),x=i(),j&&j.c(),P=d()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),j&&j.l(t),P=d()},m(s,t){p(s,r,t),f(r,a),p(s,v,t),p(s,E,t),f(E,g),p(s,x,t),j&&j.m(s,t),p(s,P,t)},p(s,[r]){1&r&&l(a,s[0]),2&r&&$!==($=s[1].message+"")&&l(g,$),s[1].stack?j?j.p(s,r):(j=k(s),j.c(),j.m(P.parentNode,P)):j&&(j.d(1),j=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),j&&j.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-bbf04dbf.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as c,g as n,d as u,f as p,F as l,h as f,k as i,l as d,n as m,G as h}from"./chunks/vendor-7705c5be.js";function k(s){let r,a,i=s[1].stack+"";return{c(){r=t("pre"),a=e(i)},l(s){r=o(s,"PRE",{});var t=c(r);a=n(t,i),t.forEach(u)},m(s,t){p(s,r,t),l(r,a)},p(s,r){2&r&&i!==(i=s[1].stack+"")&&f(a,i)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",b=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=i(),E=t("p"),g=e($),x=i(),b&&b.c(),P=d()},l(t){r=o(t,"H1",{});var e=c(r);a=n(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=c(E);g=n(p,$),p.forEach(u),x=m(t),b&&b.l(t),P=d()},m(s,t){p(s,r,t),l(r,a),p(s,v,t),p(s,E,t),l(E,g),p(s,x,t),b&&b.m(s,t),p(s,P,t)},p(s,[r]){1&r&&f(a,s[0]),2&r&&$!==($=s[1].message+"")&&f(g,$),s[1].stack?b?b.p(s,r):(b=k(s),b.c(),b.m(P.parentNode,P)):b&&(b.d(1),b=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),b&&b.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
1
docs/_app/error.svelte-ec1dbb71.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as r,s as a,e as t,t as e,c as o,a as n,g as c,d as u,f as p,F as f,h as l,k as i,l as d,n as m,G as h}from"./chunks/vendor-baa39f88.js";function k(s){let r,a,i=s[1].stack+"";return{c(){r=t("pre"),a=e(i)},l(s){r=o(s,"PRE",{});var t=n(r);a=c(t,i),t.forEach(u)},m(s,t){p(s,r,t),f(r,a)},p(s,r){2&r&&i!==(i=s[1].stack+"")&&l(a,i)},d(s){s&&u(r)}}}function v(s){let r,a,v,E,g,x,P,$=s[1].message+"",b=s[1].stack&&k(s);return{c(){r=t("h1"),a=e(s[0]),v=i(),E=t("p"),g=e($),x=i(),b&&b.c(),P=d()},l(t){r=o(t,"H1",{});var e=n(r);a=c(e,s[0]),e.forEach(u),v=m(t),E=o(t,"P",{});var p=n(E);g=c(p,$),p.forEach(u),x=m(t),b&&b.l(t),P=d()},m(s,t){p(s,r,t),f(r,a),p(s,v,t),p(s,E,t),f(E,g),p(s,x,t),b&&b.m(s,t),p(s,P,t)},p(s,[r]){1&r&&l(a,s[0]),2&r&&$!==($=s[1].message+"")&&l(g,$),s[1].stack?b?b.p(s,r):(b=k(s),b.c(),b.m(P.parentNode,P)):b&&(b.d(1),b=null)},i:h,o:h,d(s){s&&u(r),s&&u(v),s&&u(E),s&&u(x),b&&b.d(s),s&&u(P)}}}function E({error:s,status:r}){return{props:{error:s,status:r}}}function g(s,r,a){let{status:t}=r,{error:e}=r;return s.$$set=s=>{"status"in s&&a(0,t=s.status),"error"in s&&a(1,e=s.error)},[t,e]}export default class extends s{constructor(s){super(),r(this,s,g,v,a,{status:0,error:1})}}export{E as load};
|
BIN
docs/_app/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
docs/_app/favicon.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
docs/_app/fonts/Faktos.ttf
Normal file
BIN
docs/_app/fonts/FaktosContour.ttf
Normal file
BIN
docs/_app/fonts/FaktosOutline.ttf
Normal file
BIN
docs/_app/fonts/FaktosShadow.ttf
Normal file
BIN
docs/_app/fonts/dosis/Dosis-VariableFont_wght.ttf
Normal file
95
docs/_app/fonts/dosis/OFL.txt
Normal file
@ -0,0 +1,95 @@
|
||||
Copyright (c) 2011, Edgar Tolentino and Pablo Impallari (www.impallari.com|impallari@gmail.com),
|
||||
Copyright (c) 2011, Igino Marini. (www.ikern.com|mail@iginomarini.com),
|
||||
with Reserved Font Names "Dosis".
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
69
docs/_app/fonts/dosis/README.txt
Normal file
@ -0,0 +1,69 @@
|
||||
Dosis Variable Font
|
||||
===================
|
||||
|
||||
This download contains Dosis as both a variable font and static fonts.
|
||||
|
||||
Dosis is a variable font with this axis:
|
||||
wght
|
||||
|
||||
This means all the styles are contained in a single file:
|
||||
Dosis-VariableFont_wght.ttf
|
||||
|
||||
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||
in those cases you can use the static font files for Dosis:
|
||||
static/Dosis-ExtraLight.ttf
|
||||
static/Dosis-Light.ttf
|
||||
static/Dosis-Regular.ttf
|
||||
static/Dosis-Medium.ttf
|
||||
static/Dosis-SemiBold.ttf
|
||||
static/Dosis-Bold.ttf
|
||||
static/Dosis-ExtraBold.ttf
|
||||
|
||||
Get started
|
||||
-----------
|
||||
|
||||
1. Install the font files you want to use
|
||||
|
||||
2. Use your app's font picker to view the font family and all the
|
||||
available styles
|
||||
|
||||
Learn more about variable fonts
|
||||
-------------------------------
|
||||
|
||||
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||
https://variablefonts.typenetwork.com
|
||||
https://medium.com/variable-fonts
|
||||
|
||||
In desktop apps
|
||||
|
||||
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||
|
||||
Online
|
||||
|
||||
https://developers.google.com/fonts/docs/getting_started
|
||||
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||
|
||||
Installing fonts
|
||||
|
||||
MacOS: https://support.apple.com/en-us/HT201749
|
||||
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||
|
||||
Android Apps
|
||||
|
||||
https://developers.google.com/fonts/docs/android
|
||||
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||
|
||||
License
|
||||
-------
|
||||
Please read the full license text (OFL.txt) to understand the permissions,
|
||||
restrictions and requirements for usage, redistribution, and modification.
|
||||
|
||||
You can use them freely in your products & projects - print or digital,
|
||||
commercial or otherwise. However, you can't sell the fonts on their own.
|
||||
|
||||
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||
license for all details.
|
4
docs/_app/fonts/dosis/dosis.css
Normal file
@ -0,0 +1,4 @@
|
||||
@font-face {
|
||||
font-family: 'Dosis';
|
||||
src: url(Dosis-VariableFont_wght.ttf) format('truetype');
|
||||
}
|
BIN
docs/_app/fonts/dosis/static/Dosis-Bold.ttf
Normal file
BIN
docs/_app/fonts/dosis/static/Dosis-ExtraBold.ttf
Normal file
BIN
docs/_app/fonts/dosis/static/Dosis-ExtraLight.ttf
Normal file
BIN
docs/_app/fonts/dosis/static/Dosis-Light.ttf
Normal file
BIN
docs/_app/fonts/dosis/static/Dosis-Medium.ttf
Normal file
BIN
docs/_app/fonts/dosis/static/Dosis-Regular.ttf
Normal file
BIN
docs/_app/fonts/dosis/static/Dosis-SemiBold.ttf
Normal file
BIN
docs/_app/fonts/fakto10.ttf
Normal file
BIN
docs/_app/fonts/fakto9.ttf
Normal file
5
docs/_app/fonts/faktos.css
Normal file
@ -0,0 +1,5 @@
|
||||
@font-face {
|
||||
font-family: 'Faktos';
|
||||
font-style: normal;
|
||||
src: url(Faktos.ttf) format('truetype');
|
||||
}
|
BIN
docs/_app/fonts/faktos.ttf
Normal file
114
docs/_app/global.css
Normal file
@ -0,0 +1,114 @@
|
||||
:root {
|
||||
--font-scale-9: 0.75rem;
|
||||
--font-scale-10: 1em;
|
||||
--font-scale-11: 1.333rem;
|
||||
--font-scale-12: 1.777rem;
|
||||
--font-scale-13: 2.369rem;
|
||||
--font-scale-14: 3.157rem;
|
||||
--font-scale-15: 4.209rem;
|
||||
|
||||
--oxford-blue: hsla(226, 60%, 10%, 1);
|
||||
--royal-blue-dark: hsla(218, 100%, 16%, 1);
|
||||
--indigo-dye: hsla(209, 95%, 24%, 1);
|
||||
--cg-blue: hsla(193, 80%, 35%, 1);
|
||||
--white: hsla(20, 60%, 99%, 1);
|
||||
|
||||
--main-width: 60em;
|
||||
}
|
||||
|
||||
small {font-size: var(--font-scale-9); }
|
||||
|
||||
h1 {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
font-size: var(--font-scale-14);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: var(--font-scale-12);
|
||||
}
|
||||
|
||||
|
||||
html, body {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--white);
|
||||
color: #333;
|
||||
margin: 0;
|
||||
padding: 8px;
|
||||
box-sizing: border-box;
|
||||
font-family: "Dosis", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: rgb(0,100,200);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: rgb(0,80,160);
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
input, button, select, textarea {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
padding: 0.4em;
|
||||
margin: 0 0 0.5em 0;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
input:disabled {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
input[type="range"] {
|
||||
height: 0;
|
||||
}
|
||||
|
||||
button {
|
||||
color: #333;
|
||||
background-color: #f4f4f4;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
button:not(:disabled):active {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
border-color: #666;
|
||||
}
|
||||
|
||||
/* ---- inputs --- */
|
||||
|
||||
input, select {
|
||||
border: 0px;
|
||||
border-bottom: 1px solid var(--indigo-dye);
|
||||
}
|
||||
|
||||
input:focus, select:focus {
|
||||
border: 1px solid var(--indigo-dye);;
|
||||
}
|
||||
|
||||
input.short {
|
||||
width:5em;
|
||||
}
|
||||
|
58
docs/_app/icons/crew-star.svg
Normal file
@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 170.3 161.89999"
|
||||
enable-background="new 0 0 960 560"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="crew-star.svg"
|
||||
width="170.3"
|
||||
height="161.89999"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
|
||||
id="metadata13"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs11">
|
||||
|
||||
|
||||
|
||||
</defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="957"
|
||||
id="namedview9"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.36770833"
|
||||
inkscape:cx="314"
|
||||
inkscape:cy="98.2"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<polygon
|
||||
id="polygon4"
|
||||
points="303.8,378.2 251.2,340 198.5,378.2 218.6,316.4 166,278.1 231.1,278.1 251.2,216.3 271.3,278.1 336.3,278.1 283.7,316.4 "
|
||||
transform="translate(-166,-216.3)" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
65
docs/_app/icons/firecon.svg
Normal file
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 409 409"
|
||||
enable-background="new 0 0 960 560"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="firecon.svg"
|
||||
width="409"
|
||||
height="409"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
|
||||
id="metadata116"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs114" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="778"
|
||||
inkscape:window-height="481"
|
||||
id="namedview112"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.36770833"
|
||||
inkscape:cx="205"
|
||||
inkscape:cy="205"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<rect
|
||||
x="12.5"
|
||||
y="12.5"
|
||||
stroke-miterlimit="10"
|
||||
width="384"
|
||||
height="384"
|
||||
id="rect107"
|
||||
style="fill:none;stroke:#000000;stroke-width:25;stroke-miterlimit:10" />
|
||||
<circle
|
||||
stroke-miterlimit="10"
|
||||
cx="205"
|
||||
cy="204"
|
||||
r="121.6"
|
||||
id="circle109"
|
||||
style="stroke:#000000;stroke-width:22.25449944;stroke-miterlimit:10" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
12
docs/_app/icons/ftl-drive.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 960 560" enable-background="new 0 0 960 560" xml:space="preserve">
|
||||
<g>
|
||||
<rect x="264.5" y="65.5" fill="none" stroke="#000000" stroke-width="29" stroke-miterlimit="10" width="430" height="430"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="28.507" stroke-miterlimit="10" d="M265.4,260.8c0,0,43.9,136,104.2,136
|
||||
c31.9,0,52.6-54.9,63.8-77.5c21.7-43.8,40.7-91,72.1-129c14.9-18,37.3-38.2,62.9-37.6c28.1,0.6,48.5,27.5,65,47.1
|
||||
c23.1,27.5,43.5,57.6,61.9,88.5"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 860 B |
175
docs/_app/icons/internal-systems.svg
Normal file
@ -0,0 +1,175 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 743.40002 273.60001"
|
||||
enable-background="new 0 0 960 560"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="internal-systems.svg"
|
||||
width="743.40002"
|
||||
height="273.60001"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
|
||||
id="metadata164"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs162" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="778"
|
||||
inkscape:window-height="481"
|
||||
id="namedview160"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.36770833"
|
||||
inkscape:cx="371.7"
|
||||
inkscape:cy="136.8"
|
||||
inkscape:window-x="317"
|
||||
inkscape:window-y="165"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<polygon
|
||||
stroke-miterlimit="10"
|
||||
points="179.2,152.2 117.3,214.1 117.3,345.9 179.2,407.8 780.8,407.8 842.7,345.9 842.7,214.1 780.8,152.2 "
|
||||
id="polygon127"
|
||||
style="fill:none;stroke:#303030;stroke-width:18;stroke-miterlimit:10"
|
||||
transform="translate(-108.3,-143.2)" />
|
||||
<g
|
||||
id="g157"
|
||||
transform="translate(-108.3,-143.2)">
|
||||
<rect
|
||||
x="196.89999"
|
||||
y="194.5"
|
||||
stroke-miterlimit="10"
|
||||
width="165.89999"
|
||||
height="171"
|
||||
id="rect129"
|
||||
style="stroke:#000000;stroke-width:4.76130009;stroke-miterlimit:10" />
|
||||
<rect
|
||||
x="397.10001"
|
||||
y="194.5"
|
||||
stroke-miterlimit="10"
|
||||
width="165.89999"
|
||||
height="171"
|
||||
id="rect131"
|
||||
style="stroke:#000000;stroke-width:4.76130009;stroke-miterlimit:10" />
|
||||
<rect
|
||||
x="597.20001"
|
||||
y="194.5"
|
||||
stroke-miterlimit="10"
|
||||
width="165.89999"
|
||||
height="171"
|
||||
id="rect133"
|
||||
style="stroke:#000000;stroke-width:4.76130009;stroke-miterlimit:10" />
|
||||
|
||||
<rect
|
||||
x="220.10001"
|
||||
y="294.10001"
|
||||
stroke-miterlimit="10"
|
||||
width="119.4"
|
||||
height="19.4"
|
||||
id="rect135"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:4.76130009;stroke-miterlimit:10" />
|
||||
|
||||
<rect
|
||||
x="220.10001"
|
||||
y="322.70001"
|
||||
stroke-miterlimit="10"
|
||||
width="119.4"
|
||||
height="19.4"
|
||||
id="rect137"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:4.76130009;stroke-miterlimit:10" />
|
||||
|
||||
<rect
|
||||
x="220.10001"
|
||||
y="265.5"
|
||||
stroke-miterlimit="10"
|
||||
width="119.4"
|
||||
height="19.4"
|
||||
id="rect139"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:4.76130009;stroke-miterlimit:10" />
|
||||
<path
|
||||
stroke-miterlimit="10"
|
||||
d="m 279.8,204.4 c -19.3,0 -34.9,15.6 -34.9,34.9 0,19.3 15.6,34.9 34.9,34.9 19.3,0 34.9,-15.6 34.9,-34.9 0,-19.3 -15.6,-34.9 -34.9,-34.9 z m 0,53.2 c -10.1,0 -18.3,-8.2 -18.3,-18.3 0,-10.1 8.2,-18.3 18.3,-18.3 10.1,0 18.3,8.2 18.3,18.3 0,10.1 -8.2,18.3 -18.3,18.3 z"
|
||||
id="path141"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:4.76130009;stroke-miterlimit:10" />
|
||||
<ellipse
|
||||
stroke-miterlimit="10"
|
||||
cx="480"
|
||||
cy="280"
|
||||
rx="63.799999"
|
||||
ry="74.5"
|
||||
id="ellipse143"
|
||||
style="stroke:#ffffff;stroke-width:5.13619995;stroke-miterlimit:10" />
|
||||
<circle
|
||||
stroke-miterlimit="10"
|
||||
cx="480"
|
||||
cy="228.5"
|
||||
r="15.8"
|
||||
id="circle145"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:5.13619995;stroke-miterlimit:10" />
|
||||
<path
|
||||
stroke-miterlimit="10"
|
||||
d="M 427.6,250.5 H 531 c 0,0 -46.9,7.1 -51.7,93.1 0,0 4.4,-85.4 -51.7,-93.1 z"
|
||||
id="path147"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:5.13619995;stroke-miterlimit:10" />
|
||||
<circle
|
||||
stroke-miterlimit="10"
|
||||
cx="680.20001"
|
||||
cy="280"
|
||||
r="10.3"
|
||||
id="circle149"
|
||||
style="fill:#ffffff;stroke:#ffffff;stroke-width:3.75830007;stroke-miterlimit:10" />
|
||||
|
||||
<ellipse
|
||||
transform="matrix(0.7431,-0.6691,0.6691,0.7431,-12.654,527.0353)"
|
||||
stroke-miterlimit="10"
|
||||
cx="680.20001"
|
||||
cy="280"
|
||||
rx="17.6"
|
||||
ry="75.5"
|
||||
id="ellipse151"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:4.84919977;stroke-miterlimit:10" />
|
||||
|
||||
<ellipse
|
||||
transform="matrix(-0.5878,-0.809,0.809,-0.5878,853.4232,994.8409)"
|
||||
stroke-miterlimit="10"
|
||||
cx="680.20001"
|
||||
cy="280"
|
||||
rx="17.6"
|
||||
ry="75.5"
|
||||
id="ellipse153"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:4.84919977;stroke-miterlimit:10" />
|
||||
|
||||
<ellipse
|
||||
transform="matrix(-0.9781,-0.2079,0.2079,-0.9781,1287.2416,695.2945)"
|
||||
stroke-miterlimit="10"
|
||||
cx="680.20001"
|
||||
cy="280"
|
||||
rx="17.6"
|
||||
ry="75.5"
|
||||
id="ellipse155"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:4.84919977;stroke-miterlimit:10" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
71
docs/_app/icons/screen-advanced.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 457.3924 458.52048"
|
||||
enable-background="new 0 0 960 560"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="screen-advanced.svg"
|
||||
width="457.3924"
|
||||
height="458.52048"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
|
||||
id="metadata247"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs245" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="778"
|
||||
inkscape:window-height="481"
|
||||
id="namedview243"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.36770833"
|
||||
inkscape:cx="228.69619"
|
||||
inkscape:cy="224.72809"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<g
|
||||
id="g240"
|
||||
transform="translate(-251.30381,-46.207612)">
|
||||
<rect
|
||||
x="387.29999"
|
||||
y="280.79999"
|
||||
transform="matrix(0.7071,0.7071,-0.7071,0.7071,404.6839,-230.0195)"
|
||||
width="185.5"
|
||||
height="185.5"
|
||||
id="rect234" />
|
||||
<polyline
|
||||
stroke-miterlimit="10"
|
||||
points="654.3,330.5 480,156.2 305.7,330.5 "
|
||||
id="polyline236"
|
||||
style="fill:none;stroke:#000000;stroke-width:13;stroke-miterlimit:10" />
|
||||
<polyline
|
||||
stroke-miterlimit="10"
|
||||
points="704.1,279.5 480,55.4 255.9,279.5 "
|
||||
id="polyline238"
|
||||
style="fill:none;stroke:#000000;stroke-width:13;stroke-miterlimit:10" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
71
docs/_app/icons/screen.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 396.50296 456.80048"
|
||||
enable-background="new 0 0 960 560"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="screen.svg"
|
||||
width="396.50296"
|
||||
height="456.80048"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
|
||||
id="metadata171"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs169" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="778"
|
||||
inkscape:window-height="481"
|
||||
id="namedview167"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.36770833"
|
||||
inkscape:cx="198.30113"
|
||||
inkscape:cy="218.59999"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<g
|
||||
id="g164"
|
||||
transform="translate(-281.69887,-41.799529)">
|
||||
<circle
|
||||
cx="480"
|
||||
cy="366.79999"
|
||||
r="131.8"
|
||||
id="circle158" />
|
||||
<path
|
||||
stroke-miterlimit="10"
|
||||
d="m 348.2,193.3 c 0,0 130,-67.9 263.6,0"
|
||||
id="path160"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:39.33679962;stroke-miterlimit:10" />
|
||||
<path
|
||||
stroke-miterlimit="10"
|
||||
d="m 290.8,104.7 c 0,0 186.6,-97.4 378.5,0"
|
||||
id="path162"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:39.33679962;stroke-miterlimit:10" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
57
docs/_app/icons/standard-drive.svg
Normal file
@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 625 520.20758"
|
||||
enable-background="new 0 0 960 560"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="standard-drive.svg"
|
||||
width="625"
|
||||
height="520.20758"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
|
||||
id="metadata13"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs11" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="778"
|
||||
inkscape:window-height="481"
|
||||
id="namedview9"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.36770833"
|
||||
inkscape:cx="313"
|
||||
inkscape:cy="259"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<polygon
|
||||
stroke-miterlimit="10"
|
||||
points="180,215.8 479.5,34 779,215.8 779,526 180,526 "
|
||||
id="polygon2"
|
||||
style="fill:none;stroke:#000000;stroke-width:26;stroke-miterlimit:10"
|
||||
transform="translate(-167,-18.792427)" />
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
1
docs/_app/layout.svelte-03f5cd82.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-dc8940a4.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-094a928b.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-86605c92.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-14ddab6f.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-ac23457f.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-2209e019.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-d19db435.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-456bc047.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-7705c5be.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-6e2a0dfe.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-7686ecbd.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-72b4c722.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as a}from"./chunks/vendor-baa39f88.js";function c(s){let t;const e=s[1].default,c=n(e,s,s[0],null);return{c(){c&&c.c()},l(s){c&&c.l(s)},m(s,e){c&&c.m(s,e),t=!0},p(s,[n]){c&&c.p&&(!t||1&n)&&l(c,e,s,s[0],n,null,null)},i(s){t||(o(c,s),t=!0)},o(s){a(c,s),t=!1},d(s){c&&c.d(s)}}}function r(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,r,c,e,{})}}
|
1
docs/_app/layout.svelte-8ff5a2d3.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-d7482fce.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-d6a12100.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-6371dcb3.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-dc2d0ab0.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-d574e9c5.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
1
docs/_app/layout.svelte-f1097675.js
Normal file
@ -0,0 +1 @@
|
||||
import{S as s,i as t,s as e,D as n,E as l,v as o,r as c}from"./chunks/vendor-ac23457f.js";function r(s){let t;const e=s[1].default,r=n(e,s,s[0],null);return{c(){r&&r.c()},l(s){r&&r.l(s)},m(s,e){r&&r.m(s,e),t=!0},p(s,[n]){r&&r.p&&(!t||1&n)&&l(r,e,s,s[0],n,null,null)},i(s){t||(o(r,s),t=!0)},o(s){c(r,s),t=!1},d(s){r&&r.d(s)}}}function u(s,t,e){let{$$slots:n={},$$scope:l}=t;return s.$$set=s=>{"$$scope"in s&&e(0,l=s.$$scope)},[l,n]}export default class extends s{constructor(s){super(),t(this,s,u,r,e,{})}}
|
5
docs/_app/mass.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version='1.0' encoding='iso-8859-1'?>
|
||||
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.003 512.003" xmlns:xlink="http://www.w3.org/1999/xlink" enable-background="new 0 0 512.003 512.003">
|
||||
<path d="m510.838,471.439l-80-288c-3.852-13.852-16.461-23.438-30.836-23.438h-112v-6.781c28-12.379 48-40.498 48-73.219 0-44.109-35.891-80-80-80s-80,35.891-80,80c0,32.721 20,60.84 48,73.219v6.781h-112c-14.375,0-26.984,9.586-30.836,23.438l-80,288c-2.672,9.633-0.695,19.969 5.359,27.93 6.055,7.961 15.477,12.633 25.477,12.633h448c10,0 19.422-4.672 25.477-12.633 6.054-7.961 8.03-18.297 5.359-27.93zm-254.836-407.437c8.82-1.42109e-14 16,7.18 16,16s-7.18,16-16,16c-8.82,0-16-7.18-16-16s7.179-16 16-16z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 823 B |